We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function dashboard() |
||
25 | { |
||
26 | $this->data['title'] = trans('backpack::base.dashboard'); // set the page title |
||
27 | $this->data['breadcrumbs'] = [ |
||
28 | trans('backpack::crud.admin') => backpack_url('dashboard'), |
||
29 | trans('backpack::base.dashboard') => false, |
||
30 | ]; |
||
31 | |||
32 | return view(backpack_view('dashboard'), $this->data); |
||
|
|||
33 | } |
||
56 |