Esempio n. 1
0
 public function index()
 {
     return view(vw('theme.home'));
 }
Esempio n. 2
0
 public function getTrash()
 {
     $records = Work::where('status', 'trash')->get();
     $recordsCount = count($records);
     return view(vw('theme.work.trash'), compact('records', 'recordsCount'))->with(array('title' => 'Silinmiş İşler'));
 }
 public function getTrash()
 {
     $records = Customer::where('status', 'trash')->get();
     $recordsCount = count($records);
     return view(vw('theme.customer.trash'), compact('records', 'recordsCount'))->with(array('title' => 'Silinmiş Müşteriler'));
 }