Add aircraft

This commit is contained in:
2026-04-03 13:16:15 +10:00
parent baa08f0b3a
commit 2056f6b03a
2 changed files with 115 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Aircraft extends Model
{
protected $fillable = [
'designator',
'manufacturer_code',
'model_full_name',
'aircraft_description',
'engine_type',
'engine_count',
'wtc',
];
protected $casts = [
'engine_count' => 'integer',
];
}