17 lines
287 B
PHP
17 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Ticket;
|
|
|
|
class AdminTicketService
|
|
{
|
|
public function paginateWithDecision(int $perPage = 10)
|
|
{
|
|
return Ticket::query()
|
|
->with(['decisions.article'])
|
|
->latest()
|
|
->paginate($perPage);
|
|
}
|
|
}
|