Viewing: ProjectNearByPlace.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class ProjectNearByPlace extends Model { protected $table = 'project_near_by_places'; protected $fillable = ['project_id' , 'near_by_place_id']; }
Return