mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f712b789ca
* fix typo * php-cs traits * CS fixer pass * Password protect User routes * Implement checks to prevent editing a deleted record * Clean up payment flows * Fixes for tests
38 lines
721 B
PHP
38 lines
721 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TaxRate extends BaseModel
|
|
{
|
|
use MakesHash;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'rate'
|
|
];
|
|
|
|
protected $appends = ['tax_rate_id'];
|
|
|
|
public function getRouteKeyName()
|
|
{
|
|
return 'tax_rate_id';
|
|
}
|
|
|
|
public function getTaxRateIdAttribute()
|
|
{
|
|
return $this->encodePrimaryKey($this->id);
|
|
}
|
|
}
|