aswi2020merlot-gitlab/app/Http/Controllers/ArtefactController.php @ 141f4219
1 | 74e290c2 | Adam Mištera | <?php
|
---|---|---|---|
2 | |||
3 | namespace App\Http\Controllers; |
||
4 | |||
5 | use App\Artefact; |
||
6 | use Illuminate\Http\Request; |
||
7 | use Illuminate\Support\Facades\DB; |
||
8 | |||
9 | class ArtefactController extends Controller |
||
10 | {
|
||
11 | public function default() |
||
12 | {
|
||
13 | $artefacts = DB::table('artefacts')->get(); |
||
14 | |||
15 | return view('artefact.default', ['artefacts' => $artefacts]); |
||
16 | }
|
||
17 | }
|