Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117751679
VatRate.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
834 B
Referenced Files
None
Subscribers
None
VatRate.php
View Options
<?php
namespace
App
;
use
App\Traits\UuidStrKeyTrait
;
use
Illuminate\Database\Eloquent\Model
;
/**
* The eloquent definition of a Vat Rate.
*
* @property string $id Rate identifier (uuid)
* @property string $country Two-letter country code
* @property float $rate Tax rate
* @property string $start Start date of the rate
*/
class
VatRate
extends
Model
{
use
UuidStrKeyTrait
;
/** @var array<string, string> The attributes that should be cast */
protected
$casts
=
[
'start'
=>
'datetime:Y-m-d H:i:s'
,
'rate'
=>
'float'
,
];
/** @var list<string> The attributes that are mass assignable */
protected
$fillable
=
[
'country'
,
'rate'
,
'start'
,
];
/** @var bool Indicates if the model should be timestamped. */
public
$timestamps
=
false
;
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 3:21 AM (20 h, 31 m ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9f/04/24b63dc402143c09a298b4da706b
Default Alt Text
VatRate.php (834 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline