mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
init crater
This commit is contained in:
17
app/Currency.php
Normal file
17
app/Currency.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace Laraspace;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Currency extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'code',
|
||||
'symbol',
|
||||
'precision',
|
||||
'thousand_separator',
|
||||
'decimal_separator',
|
||||
'position'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user