D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
management-zone
/
htdocs
/
management-zone.com
/
app
/
Filename :
Gallery.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Gallery extends Model { public function language() { return $this->belongsTo('App\Language'); } public function galleryImgCategory() { return $this->belongsTo('App\GalleryCategory', 'category_id', 'id'); } }