ctrlpanel/app/Models/TicketCategory.php

16 lines
255 B
PHP
Raw Permalink Normal View History

2022-08-01 16:52:16 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TicketCategory extends Model
{
2022-08-01 16:52:16 +00:00
protected $fillable = ['name'];
public function tickets()
{
2023-02-01 10:07:37 +00:00
return $this->hasMany(Ticket::class,'ticketcategory_id');
}
2022-08-01 16:52:16 +00:00
}