Files
cv-roberto/app/Models/Education.php
Roberto Guagliardo b324c030f4 Initial commit
2025-06-19 02:02:04 +02:00

20 lines
410 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Spatie\MediaLibrary\HasMedia;
use Spatie\MediaLibrary\InteractsWithMedia;
class Education extends Model implements HasMedia
{
use InteractsWithMedia;
protected $table = 'education';
protected $fillable = [
'opleiding',
'instituut',
'startdatum',
'einddatum',
'beschrijving',
];
}