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