remove compose file to another repo

This commit is contained in:
2025-05-05 15:30:11 +03:30
parent 02ef3ae2ad
commit 3b739558ee
179 changed files with 130 additions and 341 deletions

22
app/Models/Call.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
class Call extends Model
{
use HasFactory;
protected $guarded = [
'call_id',
'created_at',
'updated_at'
];
public function histories(): HasMany
{
return $this->hasMany(CallHistory::class);
}
}