16 lines
494 B
PHP
16 lines
494 B
PHP
@extends('layout')
|
|
|
|
@push('head')
|
|
<link rel="stylesheet" href="{{ asset('css/generic.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/seat-chooser.css') }}">
|
|
<script src="{{ asset('js/seat-chooser.js') }}"></script>
|
|
@endpush
|
|
|
|
<div>
|
|
<div id="seat-chooser" data-showing-id="{{ $showing_id }}">
|
|
<div id="seat-chooser-status">
|
|
<h2>Loading...</h2>
|
|
<span id="seat-chooser-status-message">Fetching prices...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|