|SupportTicket newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket newQuery() * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket query() * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereApplicantUserId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereDescription($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereResponsableUserId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereSeverity($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereStudentId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereSupportStatusId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereTitle($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|SupportTicket whereUpdatedAt($value) * @mixin \Eloquent */ class SupportTicket extends Model { use HasFactory; protected $table = 'support_tickets'; protected $guarded = [ 'id', // Add more fields that shouldn't be edited here ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', // Add your casts here (e.g., 'is_active' => 'boolean') ]; // Relationships // Business Logic Methods // Custom Finders // Query Scopes }