D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
app
/
Filename :
Galleries.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Galleries extends Model { /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['deleted_at']; protected $table = 'galleries'; protected $fillable = [ 'name', 'picture', 'artist_id', 'type' ]; public function artist() { return $this->hasOne('App\Artist', 'id', 'artist_id'); } }