mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
14 lines
196 B
PHP
14 lines
196 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Ticket extends Model
|
|
{
|
|
public function scopeAvailable($query)
|
|
{
|
|
return $query->whereNull('order_id');
|
|
}
|
|
}
|