| Total Complexity | 4 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class PageController extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Show the home page. |
||
| 12 | * |
||
| 13 | * @return \Illuminate\Http\Response |
||
| 14 | */ |
||
| 15 | public function index() |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Display the terms page. |
||
| 35 | * |
||
| 36 | * @return \Illuminate\Http\Response |
||
| 37 | */ |
||
| 38 | public function terms() |
||
| 39 | { |
||
| 40 | |||
| 41 | $this->breadcrumbs->addCrumb('Terms', route('page.terms')); |
||
| 42 | |||
| 43 | return view('page.terms', ['breadcrumbs' => $this->breadcrumbs]); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Display the banished page. |
||
| 48 | * |
||
| 49 | * @return \Illuminate\Http\Response |
||
| 50 | */ |
||
| 51 | public function banished() |
||
| 59 | } |
||
| 60 | } |
||
| 61 |