@extends('layout.app') @section('content')
طلبك
@php $opening_timing = $resto_info['opening_timing']; $closing_timing = $resto_info['closing_timing']; $is_resto_opened = false; if(!empty($opening_timing) && !empty($closing_timing)){ // $opening_timing = "13:00"; $opening_timing = date('H:i', strtotime($opening_timing)); $closing_timing = date('H:i', strtotime($closing_timing)); $current_time = date('H:i'); if($current_time > $opening_timing && $current_time <= $closing_timing) $is_resto_opened = true; $opening_timing = strtotime($opening_timing); $closing_timing =strtotime($closing_timing); $tStart = $opening_timing; $tEnd = ($closing_timing); $tNow = $tStart; while($tNow <= $tEnd){ $now = date("H:i",$tNow); $tNow = strtotime('+15 minutes',$tNow); $time_slots[] = $now; } } @endphp

التوصيل الى

اختر عنوان

وقت التوصيل

اقرب وقت
قيمة الطلب
د. ع
قيمة التوصيل
د. ع
المبلغ الكلي
د. ع
ارسل طلبك
@endsection @section('js') @endsection