Car registration work
This commit is contained in:
23
app/Models/Vehicles.php
Normal file
23
app/Models/Vehicles.php
Normal 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'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user