D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
management-zone
/
htdocs
/
management-zone.com
/
app
/
Filename :
EventCategory.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Model; class EventCategory extends Model { protected $table = 'event_categories'; protected $fillable = [ 'name', 'slug', 'status', 'lang_id', ]; public function events(){ return $this->hasMany(Event::class,'cat_id','id'); } }