remove compose file to another repo
This commit is contained in:
22
app/Models/Call.php
Normal file
22
app/Models/Call.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user