| 1 | <?php |
||
| 9 | class HomeController extends Controller |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var TransactionService |
||
| 13 | */ |
||
| 14 | private $transactionService; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new controller instance. |
||
| 18 | * |
||
| 19 | * @param TransactionService $transactionService |
||
| 20 | */ |
||
| 21 | public function __construct(TransactionService $transactionService) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Show the application dashboard. |
||
| 29 | * |
||
| 30 | * @return \Illuminate\Http\Response |
||
| 31 | */ |
||
| 32 | public function index($id = null) |
||
| 41 | } |
||
| 42 |