コード例 #1
0
 /**
  * @return \Illuminate\View\View
  */
 public function indexAction()
 {
     $invoices = $this->invoiceRepository->getAll();
     return view('invoices/index', ['invoices' => $invoices]);
 }
コード例 #2
0
 /**
  * @return array
  */
 public function indexAction()
 {
     $invoices = $this->invoices->getAll();
     return ['invoices' => $invoices];
 }