phpvms/app/Models/Rank.php
2017-06-22 20:55:45 -05:00

53 lines
948 B
PHP

<?php
namespace App\Models;
use Eloquent as Model;
/**
* Class Ranking
* @package App\Models
*/
class Rank extends Model
{
public $table = 'ranks';
public $fillable = [
'name',
'hours',
'auto_approve_acars',
'auto_approve_manual',
'auto_promote'
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'name' => 'string',
'hours' => 'integer',
'auto_approve_acars' => 'boolean',
'auto_approve_manual' => 'boolean',
'auto_promote' => 'boolean',
];
/**
* Validation rules
*
* @var array
*/
public static $rules = [
'name' => 'unique',
];
public function subfleets() {
return $this->belongsToMany(
'App\Models\Subfleet',
'subfleet_rank'
)->withPivot('acars_pay', 'manual_pay');
}
}