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