@extends('layouts.app') @section('content')
@include('frontend/artistSummarHeader')
@foreach ($booking as $booking) @endforeach
S.No Title Booking date Venue details Price Status Transaction
{{$i}} {{ $booking->title }} {{$booking->artist_quote[0]->wedding_date}}

Venue Name: {{ $booking->artist_quote[0]->venu_name }}, {{ $booking->artist_quote[0]->street }}, {{ $booking->artist_quote[0]->city }}, {{ $booking->artist_quote[0]->country }}-{{ $booking->artist_quote[0]->postcode }}

Arrival Time: {{$booking->artist_quote[0]->act_arrival}}

Duration: {{$booking->artist_quote[0]->duration}}

Performance Start/End: {{$booking->artist_quote[0]->performance_start}}-{{$booking->artist_quote[0]->end_time_duration}}

£ {{ $booking->price }} {{ $booking->payment_status == 0 ? 'Pending' : 'Confirmed' }} @if($booking->payment_status == 0 && Auth::user()->hasRole('Artist')) N/A @elseif($booking->payment_status == 0) Make Payment @else {{$booking->paymentdatas[0]->txn_id}} @endif
@endsection