You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
581 B
31 lines
581 B
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
class Feedback extends Model |
|
{ |
|
protected $fillable = [ |
|
'type', |
|
'title', |
|
'message', |
|
'status', |
|
'reporter', |
|
'reporter_name', |
|
'page', |
|
'url', |
|
'user_agent', |
|
'reported_at', |
|
'admin_note', |
|
'zammad_ticket_id', |
|
'zammad_ticket_number', |
|
'zammad_synced_at', |
|
'zammad_sync_error', |
|
]; |
|
|
|
protected $casts = [ |
|
'reported_at' => 'datetime', |
|
'zammad_synced_at' => 'datetime', |
|
]; |
|
}
|
|
|