You've already forked Epicnabbo-Catalogus-Updated-Daily
46 lines
956 B
PHP
46 lines
956 B
PHP
<?php
|
|
|
|
namespace App\Models\User;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class UserOrder extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
public $timestamps = true;
|
|
|
|
public const STATUS_PENDING = 'pending';
|
|
|
|
public const STATUS_COMPLETED = 'completed';
|
|
|
|
public const STATUS_CANCELLED = 'cancelled';
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function scopePending($query)
|
|
{
|
|
return $query->where('status', self::STATUS_PENDING);
|
|
}
|
|
|
|
public function scopeCompleted($query)
|
|
{
|
|
return $query->where('status', self::STATUS_COMPLETED);
|
|
}
|
|
|
|
public function scopeCancelled($query)
|
|
{
|
|
return $query->where('status', self::STATUS_CANCELLED);
|
|
}
|
|
|
|
public function scopeLatest($query)
|
|
{
|
|
return $query->orderBy('created_at', 'desc');
|
|
}
|
|
}
|