Passed
Push — master ( 64e929...2260fe )
by Martin
06:15
created

SeatMapController::get()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 1
rs 10
1
<?php
2
3
namespace App\Http\Controllers\Admin;
4
5
use App\Http\Controllers\Controller;
6
use App\Location;
7
use App\PriceCategory;
8
use App\PriceList;
9
use App\SeatMap;
10
use Illuminate\Http\Request;
11
12
class SeatMapController extends Controller
13
{
14
    public function index()
15
    {
16
        return view('admin.dependencies.index', [
17
            'seatmaps' => SeatMap::all(),
18
            'locations' => Location::all(),
19
            'pricecategories' => PriceCategory::all(),
20
            'pricelists' => PriceList::all()
21
        ]);
22
    }
23
24
    public function showCreate()
25
    {
26
27
    }
28
29
    public function get() {
30
31
    }
32
}
33