samtny /
league-frontend
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Http\Controllers; |
||
| 4 | |||
| 5 | use Illuminate\Http\Request; |
||
| 6 | |||
| 7 | class AssociationStandingsArchiveController extends AssociationAwareController |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Display the specified resource. |
||
| 12 | * |
||
| 13 | * @param int $id |
||
| 14 | * @return \Illuminate\Http\Response |
||
| 15 | */ |
||
| 16 | public function show() |
||
| 17 | { |
||
| 18 | return view( |
||
|
0 ignored issues
–
show
Bug
Best Practice
introduced
by
Loading history...
|
|||
| 19 | 'association.standings.archive', |
||
| 20 | [ |
||
| 21 | 'association' => $this->association, |
||
| 22 | 'schedules' => $this->association->archivedSchedules, |
||
|
0 ignored issues
–
show
|
|||
| 23 | ] |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 27 | } |
||
| 28 |