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/show/info.blade.php

30 lines
1.5 KiB
PHP
Raw Normal View History

2021-06-27 19:01:43 +00:00
@extends('layouts.admin')
@section('page', 'Show 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">
<p><strong>ID: #</strong>{{ $show->id }}
<br><strong>Title:</strong> {{ $show->title }}
<br><strong>Description:</strong><br>{{ $show->description }}
<br><strong>Price:</strong> {{ $show->price }}
<br><strong>Vault Price:</strong> {{ $show->vault_price }}
<br><strong>Seats:</strong> {{ $show->seats }}</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