@if($data->status != 'completed' && $data->status != 'cancelled')
@elseif($data->status === 'cancelled')
@php
$color = $booking_colors->where('sub_type', $data->status)->first()->name;
@endphp
{{ $data->status }}
@else
@php
$color = $booking_colors->where('sub_type', $data->status)->first()->name;
@endphp
{{ $data->status }}
@endif