D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
management-zone
/
htdocs
/
management-zone.com
/
app
/
Filename :
Event.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Event extends Model { protected $table ='events'; protected $fillable = [ 'title', 'slug', 'content', 'date', 'time', 'cost', 'available_tickets', 'organizer', 'organizer_email', 'organizer_phone', 'organizer_website', 'venue', 'venue_location', 'venue_phone', 'meta_tags', 'meta_description', 'image', 'video', 'lang_id', 'cat_id', ]; public function eventCategories(){ return $this->belongsTo(EventCategory::class,'cat_id','id'); } }