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/profile/home.blade.php

47 lines
1.8 KiB
PHP
Raw Normal View History

2021-06-27 19:01:43 +00:00
@extends('layouts.profile')
2020-02-26 13:59:58 +00:00
@section('content')
<div class="container-fluid" style="margin-top: 75px">
@if(Auth::user()->hasShows())
@foreach(Auth::user()->getShows() as $show)
2020-02-26 13:59:58 +00:00
<div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2">
<div class="panel panel-theme">
<div class="panel-heading">
<h3 class="panel-title">{{ $show->title }}</h3>
2020-02-26 13:59:58 +00:00
</div>
<div class="panel-body">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-lg-9 col-md-9 col-sm-9">
<p>{!! $show->description !!}</p>
@php($time = strtotime($show->date))
<p class="bottom"><strong>Date: </strong>{{ date('d-m-Y', $time) }} at {{ date('H:m', $time) }}</p>
<p><strong>Seat: </strong>{{ $show->seat }}</p>
<p><strong>Voucher: </strong>{{ $show->voucher }}</p>
2020-02-26 13:59:58 +00:00
</div>
<div class="hidden-xs col-lg-3 col-md-3 col-sm-3">
<img src="{{ $show->image }}" style="float: right; height: auto; width: 100%; margin: auto" alt="Image">
2020-02-26 13:59:58 +00:00
</div>
</div>
</div>
</div>
</div>
</div>
@endforeach
@else
2020-02-26 13:59:58 +00:00
<div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2">
<div class="panel panel-theme">
<div class="panel-heading">
<h3 class="panel-title">No Shows</h3>
</div>
<div class="panel-body">
<div class="container-fluid">
<p>You have no tickets for shows.</p>
</div>
</div>
</div>
</div>
@endif
2020-02-26 13:59:58 +00:00
</div>
@endsection