| 1 | <?php |
||
| 8 | class RegionsController extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var RegionsRepository |
||
| 12 | */ |
||
| 13 | private $repository; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * RegionsController constructor. |
||
| 17 | * |
||
| 18 | * @param RegionsRepository $repository |
||
| 19 | */ |
||
| 20 | public function __construct(RegionsRepository $repository) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get all regions. |
||
| 27 | * |
||
| 28 | * @return \Illuminate\Database\Eloquent\Collection |
||
| 29 | */ |
||
| 30 | public function all() |
||
| 34 | } |
||
| 35 |