@php $Business = DB::table('business_type')->where('status',1)->get(); @endphp
@php $Country = DB::table('countries')->get(); @endphp
@php
$start = '00:00AM';
$end = '11:59PM';
$interval = '+30 minutes';
$current = strtotime($start);
$end = strtotime($end);
@endphp