Initial commit
This commit is contained in:
22
app/Models/WorkExperience.php
Normal file
22
app/Models/WorkExperience.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Spatie\MediaLibrary\HasMedia;
|
||||
use Spatie\MediaLibrary\InteractsWithMedia;
|
||||
|
||||
class WorkExperience extends Model implements HasMedia
|
||||
{
|
||||
use InteractsWithMedia;
|
||||
|
||||
protected $fillable = [
|
||||
'werkgever',
|
||||
'functie',
|
||||
'startdatum',
|
||||
'einddatum',
|
||||
'beschrijving',
|
||||
];
|
||||
|
||||
// Als je mediaconversies of image handling wil: hier kun je die later toevoegen
|
||||
}
|
||||
Reference in New Issue
Block a user