migrate to gtea from bistbucket
This commit is contained in:
23
public/restaurant/Modules/Frontend/app/Models/OurHistory.php
Normal file
23
public/restaurant/Modules/Frontend/app/Models/OurHistory.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Frontend\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class OurHistory extends Model
|
||||
{
|
||||
protected $table = 'our_histories';
|
||||
|
||||
public const TABLE_NAME = 'our_histories';
|
||||
|
||||
protected $fillable = [
|
||||
'restaurant_id',
|
||||
'year',
|
||||
'title',
|
||||
'descriptions',
|
||||
'status',
|
||||
'created_by',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user