phpvms/app/Models/Rank.php

53 lines
948 B
PHP
Raw Normal View History

2017-06-22 01:10:25 +08:00
<?php
namespace App\Models;
use Eloquent as Model;
/**
* Class Ranking
* @package App\Models
*/
2017-06-22 02:44:30 +08:00
class Rank extends Model
2017-06-22 01:10:25 +08:00
{
2017-06-22 02:44:30 +08:00
public $table = 'ranks';
2017-06-22 01:10:25 +08:00
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',
2017-06-22 09:18:01 +08:00
'hours' => 'integer',
'auto_approve_acars' => 'boolean',
'auto_approve_manual' => 'boolean',
'auto_promote' => 'boolean',
2017-06-22 01:10:25 +08:00
];
/**
* Validation rules
*
* @var array
*/
public static $rules = [
2017-06-22 09:18:01 +08:00
'name' => 'unique',
2017-06-22 01:10:25 +08:00
];
public function subfleets() {
return $this->belongsToMany(
'App\Models\Subfleet',
'subfleet_rank'
)->withPivot('acars_pay', 'manual_pay');
}
2017-06-22 01:10:25 +08:00
}