23eb9dcbda
* 384 Laravel 6 changes * Library versions * Update package versions * Add keyType to models * Remove unused dependencies * StyleCI fixes * Fix models for test * Fix tests output and update test runner * Unused imports * Update exceptions handler * Fix login page
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
|
|
/**
|
|
* @property string name
|
|
* @property int hours
|
|
* @property float manual_base_pay_rate
|
|
* @property float acars_base_pay_rate
|
|
* @property bool auto_promote
|
|
*/
|
|
class Rank extends Model
|
|
{
|
|
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');
|
|
}
|
|
}
|