3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/panel/shows/info.blade.php

29 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2021-06-27 19:01:43 +00:00
@extends('layouts.admin')
@section('page', 'Show Date Manager')
@section('content')
<div class="col-xs-12 col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{ $show->title }}</h3>
<small style="float: right"><a class="btn btn-primary" href="{{ url()->previous() }}">Back</a></small>
</div>
<div class="box-body">
<div class="row">
<div class="col-xs-12 col-md-6">
@php($time = strtotime($date->date))
<p><strong>ID: #</strong>{{ $show->id }}
<br><strong>Title:</strong> {{ $show->title }}
<br><strong>Seats:</strong> {{ $filled }}/{{ $show->seats }}
<br><strong>Date:</strong> {{ date('d-m-Y', $time) }} at {{ date('H:i', $time) }}</p>
</div>
<div class="col-xs-12 col-md-6 text-center" style="padding: 15px">
<img src="{{ $show->image }}" alt="Image" style="width: 50%; height: auto; border-radius: 10px">
</div>
</div>
</div>
</div>
</div>
@endsection