@extends('admin.layout') @section('content')
| {{ __('Room') }} | {{ __('Rent / Night') }} | {{ __('Payment Status') }} | {{ __('Actions') }} |
|---|---|---|---|
| @php $roomhave = null; $title = null; if ($booking->hotelRoom) { $roomhave = 'done'; } if ($booking->hotelRoom) { $roomInfo = $booking->hotelRoom->room_content ->where('language_id', $defaultLang->id) ->first(); } @endphp @if ($roomInfo) {{ strlen($roomInfo->title) > 25 ? mb_substr($roomInfo->title, 0, 25, 'utf-8') . '...' : $roomInfo->title }} @else -- @endif | {{ symbolPrice($booking->grand_total) }} |
@if ($booking->payment_status == 0)
@else
{{ ucfirst( $booking->payment_status == '1' ? __('Paid') : ($booking->payment_status == '0' ? __('Unpaid') : __('Rejected')), ) }}@endif |
|