Exemplo n.º 1
0
 public function closed()
 {
     $tickets = Ticket::where('status', 'closed')->orderBy('created_at', 'DESC')->paginate(20);
     return view('tickets/list', compact('tickets'));
 }