first commit
This commit is contained in:
21
app/Models/Currency.php
Normal file
21
app/Models/Currency.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
|
||||
class Currency extends BaseModel
|
||||
{
|
||||
|
||||
protected $table = 'currency';
|
||||
|
||||
const CREATED_AT = 'created_at';
|
||||
const UPDATED_AT = 'updated_at';
|
||||
|
||||
protected $dateFormat = 'U';
|
||||
|
||||
|
||||
protected $guarded = [ ];
|
||||
|
||||
protected $hidden = [];
|
||||
}
|
||||
Reference in New Issue
Block a user