#48 Model/relationships for custom flight fields
This commit is contained in:
39
app/Models/FlightFields.php
Normal file
39
app/Models/FlightFields.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Eloquent as Model;
|
||||
|
||||
/**
|
||||
* Class Flight
|
||||
*
|
||||
* @package App\Models
|
||||
*/
|
||||
class FlightFields extends Model
|
||||
{
|
||||
|
||||
public $table = 'flight_fields';
|
||||
|
||||
protected $dates = ['deleted_at'];
|
||||
|
||||
public $fillable
|
||||
= [
|
||||
'flight_id',
|
||||
'name',
|
||||
'value',
|
||||
];
|
||||
|
||||
protected $casts = [];
|
||||
|
||||
public static $rules = [];
|
||||
|
||||
/**
|
||||
* Relationships
|
||||
*/
|
||||
|
||||
public function flight()
|
||||
{
|
||||
return $this->belongsTo('App\Models\Flight', 'flight_id');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user