first commit

This commit is contained in:
2023-05-16 15:54:23 +03:00
commit 57f2db0d47
1414 changed files with 381371 additions and 0 deletions

22
app/Models/Event.php Executable file
View File

@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
use HasFactory;
protected $fillable=['project_id','image','date'];
protected $casts = [
'date' => 'date:d.m.Y',
];
public function translations()
{
return $this->hasMany(EventTranslation::class);
}
}