githubtrue/backend/app/Http/Controllers/VehicleController.php @ b50f8ebd
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 |
|
14 |
class VehicleController extends Controller |
15 |
{
|
16 |
/**
|
17 |
* Vrati vsechny typy vozidel.
|
18 |
*/
|
19 |
public function getAll() { |
20 |
$vehicles = [ |
21 |
0 => Vehicle::create(0, 'neznámé'), |
22 |
1 => Vehicle::create(1, 'motocykl'), |
23 |
2 => Vehicle::create(2, 'osobní auto'), |
24 |
3 => Vehicle::create(4, 'dodávka') |
25 |
];
|
26 |
|
27 |
return $vehicles; |
28 |
}
|
29 |
}
|
- « Předchozí
- 1
- …
- 3
- 4
- 5
- Další »