mirror of
https://github.com/crater-invoice/crater.git
synced 2025-12-15 09:52:55 -05:00
build version 400
This commit is contained in:
20
app/Models/Currency.php
Normal file
20
app/Models/Currency.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace Crater\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Currency extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'code',
|
||||
'symbol',
|
||||
'precision',
|
||||
'thousand_separator',
|
||||
'decimal_separator',
|
||||
'position'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user