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