<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Foods extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'foods';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'moo','typee','fname','photo'
];
}
-
chadaporn netwong authored27a35080