sorting fix

This commit is contained in:
Russ Long 2022-08-14 19:14:58 -04:00
parent cf8cf1a00c
commit 2399774b52

View File

@ -8,6 +8,10 @@ class Vehicles extends Model
{
protected $table = 'vehicles';
protected $casts = [
'owner' => 'integer'
];
protected $fillable = [
'year',
'make',