Car registration work

This commit is contained in:
2019-02-13 16:36:47 -05:00
parent e035800373
commit 7cdea664e1
5 changed files with 75 additions and 11 deletions

23
app/Models/Vehicles.php Normal file
View File

@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class vehicles extends Model
{
protected $table = 'items';
protected $fillable = [
'year',
'make',
'model',
'type',
'doNotJudge',
'owner'
];
protected $dates = [
'created_at',
'updated_at'
];
}