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