fix+add: seats + seat-chooser
This commit is contained in:
parent
2c6745e812
commit
b0cc5b5278
31 changed files with 808 additions and 115 deletions
16
resources/views/main/cinemas/index.blade.php
Normal file
16
resources/views/main/cinemas/index.blade.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
@extends('main.layout')
|
||||
|
||||
@section('content')
|
||||
<h1>{{ config('app.name', 'CineFlex') }}</h1>
|
||||
<hr/>
|
||||
<h2>Cinemas</h2>
|
||||
<ul>
|
||||
@foreach($cinemas as $cinema)
|
||||
<li>
|
||||
<a href="{{ route('cinema', ['id' => $cinema->id]) }}">
|
||||
{{ $cinema->name }}
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endsection
|
Loading…
Add table
Add a link
Reference in a new issue