Page MenuHomePhorge

VatRate.php
No OneTemporary

Authored By
Unknown
Size
834 B
Referenced Files
None
Subscribers
None

VatRate.php

<?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

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)

Event Timeline