12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
/**
|
|
* @property string name
|
|
* @property int hours
|
|
* @property float manual_base_pay_rate
|
|
* @property float acars_base_pay_rate
|
|
* @property bool auto_promote
|
|
* @property bool auto_approve_acars
|
|
* @property bool auto_approve_manual
|
|
*/
|
|
class Rank extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $table = 'ranks';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'hours',
|
|
'image_url',
|
|
'acars_base_pay_rate',
|
|
'manual_base_pay_rate',
|
|
'auto_approve_acars',
|
|
'auto_approve_manual',
|
|
'auto_promote',
|
|
];
|
|
|
|
protected $casts = [
|
|
'hours' => 'integer',
|
|
'auto_approve_acars' => 'bool',
|
|
'auto_approve_manual' => 'bool',
|
|
'auto_promote' => 'bool',
|
|
];
|
|
|
|
public static $rules = [
|
|
'name' => 'required',
|
|
'hours' => 'required|integer',
|
|
'acars_base_pay_rate' => 'nullable|numeric',
|
|
'manual_base_pay_rate' => 'nullable|numeric',
|
|
];
|
|
|
|
/*
|
|
* Relationships
|
|
*/
|
|
|
|
public function subfleets()
|
|
{
|
|
return $this->belongsToMany(Subfleet::class, 'subfleet_rank')
|
|
->withPivot('acars_pay', 'manual_pay');
|
|
}
|
|
}
|