<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Ticket extends Model
{
use HasFactory, SoftDeletes;
protected $fillable = ['name', 'description', 'status'];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = ['deleted_at'];
/**
* Get the events associated with the ticket.
*/
public function events()
{
return $this->belongsToMany(Event::class, 'event_tickets');
}
}