|
1. Reference Number: {{$booking->booking_code}}
Date: {{ Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $booking->updated_at)->format('d-m-Y') }}
2. Art gallery alloted for exhibition : {{ $booking->hall->hall_name}}
3. Number of days / Date of exhibition : {{ Carbon\Carbon::parse($booking->start_date)->format('d-m-Y') }} - {{ Carbon\Carbon::parse($booking->end_date)->format('d-m-Y') }}
4. Total amount including rent and deposit :
@php
$rent = \App\Models\BookedRoom::where('booking_id', $booking->id)->sum('rent_total');
@endphp
Rent : ₹{{$rent}}
Total Amount(Including GST) : ₹{{$booking->booking_price}}
Security Deposit : ₹{{$booking->fixed_deposit}}( payable at respective gallery only on previous day of
exhibition )
6. Name of Artist / Institution: @if($booking->applicant_name != null)
{{$booking->applicant_name}}
@else
{{$booking->user->first_name}} {{$booking->user->last_name}}
@endif
7. Contact Number of Exhibitor : @if($booking->phone != null)
{{$booking->phone}}
@else
{{$booking->user->phone}}
@endif
@if($booking->address != null)
8 Address of Exhibitor : {{$booking->address}}
@endif
9. Type of exhibit: {{$booking->medium}}
Secretary
Kerala Lalithakala akademi
This document is computer generated and does not require the signature / seal
TERMS & CONDITIONS REGARDING THE ALLOTMENT OF GALLERY
@if($english)
@foreach ($english as $key => $sentence)
{{$key + 1 }} . {{$sentence->content}}
@endforeach
@endif
|