cineflex/resources/views/components/seat-chooser.blade.php

17 lines
494 B
PHP
Raw Normal View History

@extends('layout')
@push('head')
2023-01-02 00:51:48 +01:00
<link rel="stylesheet" href="{{ asset('css/generic.css') }}">
<link rel="stylesheet" href="{{ asset('css/seat-chooser.css') }}">
2023-02-02 08:17:38 +01:00
<script src="{{ asset('js/seat-chooser.js') }}"></script>
@endpush
2023-02-02 08:17:38 +01:00
<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>