mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
namespace Modules\SupportTicket\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SupportTicketFile extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
public function attachment()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|