first commit

This commit is contained in:
2023-05-17 09:57:20 +03:00
commit fda632f9a7
1701 changed files with 364808 additions and 0 deletions

23
app/Models/Company.php Executable file
View File

@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Company extends Model
{
use HasFactory;
protected $fillable=['image'];
public function translations()
{
return $this->hasMany(CompanyTranslation::class);
}
public function images()
{
return $this->hasMany(CompanyImage::class);
}
}