Ramakant Gangwar

Results 3 comments of Ramakant Gangwar

Is morphTo and morphToMany supported?

> @asandri-mmo What do your tables look like? @staudenmeir Schema::create('candidates', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->timestamps(); }); Schema::create('jobs', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->timestamps(); }); Schema::create('applications', function (Blueprint...