/
home
/
obinna
/
html
/
cravings
/
app
/
Upload File
HOME
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Jenssegers\Mongodb\Eloquent\Model as Eloquent; class Foods extends Eloquent { /** * The name of the database table this class represents * * @var string */ protected $collection = 'fooding'; protected $fillable = [ 'name', 'price', 'description', 'place_id', 'place_name' ]; public $timestamps = false; }