githubtrue/backend/app/Http/Controllers/VehicleController.php @ d58f0fda
1 |
<?php
|
---|---|
2 |
/**
|
3 |
* Created by PhpStorm.
|
4 |
* User: Zdenda
|
5 |
* Date: 20.4.2018
|
6 |
* Time: 20:25
|
7 |
*/
|
8 |
|
9 |
namespace App\Http\Controllers; |
10 |
|
11 |
|
12 |
use App\Model\Vehicle; |
13 |
use App\Model\Vozidlo; |
14 |
|
15 |
class VehicleController extends Controller |
16 |
{
|
17 |
/**
|
18 |
* Vrati vsechny typy vozidel.
|
19 |
*/
|
20 |
public function getAll() { |
21 |
return Vozidlo::all(); |
22 |
}
|
23 |
}
|
- « Předchozí
- 1
- …
- 3
- 4
- 5
- Další »