File: /home/xdas/public_html/oldsite/app/Place.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Place extends Model
{
//
protected $table='places';
protected $fillable=[
'title_ar', 'title_en', 'description_en', 'description_ar',
'meta_description_en', 'meta_description_ar', 'let', 'length', 'tags','video','status','location',
'slogen_ar','slogen_en'
];
public function images(){
return $this->hasMany('App\Image');
}
public function comments(){
return $this->hasMany('App\Comment');
}
public function suggestions(){
return $this->hasMany('App\Suggestion');
}
}