123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266 |
- <?php
- namespace App\Http\Controllers;
- use App\Helpers\CommonMethods;
- use App\Jobs\SendOrderNotifications;
- use App\Jobs\SendOrderPusherNotification;
- use App\Models\ExtraOptionItems;
- use App\Models\ExtraOptions;
- use App\Models\OrderActivities;
- use App\Models\OrderNotifications;
- use App\Models\Orders;
- use App\Models\Outlets;
- use App\Models\Restaurants;
- use App\Models\RestoSMSs;
- use App\Models\Discounts;
- use Carbon\Carbon;
- use App\Models\DiscountWithOrder;
- use App\Models\Loyalties;
- use App\Models\CustomerLoyaltyHistories;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Artisan;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Lang;
- use Pusher\Pusher;
- use Log;
- use Illuminate\Support\Facades\Http;
- use DB;
- class Order extends Controller
- {
- private $resto_id;
- function __construct(){
- }
- public function orders(){
- //$recent_till = Carbon::now()->subDays(2);;
- $this->resto_id = CommonMethods::getRestuarantID();
- $start_page = isset($request->start_page)?$request->start_page-1:0;
- $limit = env('ORDER_NUMBER_ITEMS');
- $offset = $start_page * $limit;
- $orders = Orders::where('resto_id',$this->resto_id)->whereIN('status' ,['Placed','Send_to_Kitchen','On_Road','Accepted'])->orderBy('created_at','DESC')->offset($offset)->limit($limit)->get()->toJson();
- // $orders = Auth::user()->restaurants->orders;
- $data = [
- 'orders' => $orders
- ];
- if(isset($_GET['type']) && $_GET['type']=="discount")
- return view('orders.orders-discount',$data);
- else
- return view('orders.orders',$data);
- }
- public function all_status_count(){
- $resto_id = CommonMethods::getRestuarantID();
- $this->resto_id = $resto_id;
- $orders = Orders::select(DB::raw(' count(status) as status_count'),'status')->where('resto_id',$this->resto_id)->whereIN('status' ,['Placed','Send_to_Kitchen','On_Road','Accepted'])->groupBy('status')->get();
- $order_statuses = ['Placed','Send_to_Kitchen','On_Road','Accepted'];
- $a = [];
- foreach($orders as $order){
- $status[$order->status] = array('status_count'=>$order->status_count,'status'=>$order->status);
- }
- // dd($status);
- $aa = [];
- foreach($order_statuses as $st){
- if(isset($status[$st]))
- $aa[] = $status[$st];
- else{
- $aa[] = array('status_count'=>0,'status'=>$st);
- }
- }
- return response()->json($aa);
- }
- public function load_live_order(Request $request){
- $this->resto_id = CommonMethods::getRestuarantID();
- $status=$request->status;
- $resto = Restaurants::find($this->resto_id);
- $time_zone = "Asia/Dubai";
- if(!empty($resto->time_zone)){
- config(['app.timezone' => $resto->time_zone]);
- date_default_timezone_set($resto->time_zone);
- $time_zone = $resto->time_zone;
- // dd(\Carbon\Carbon::now()->format('Y-m-d H:i:s'));
- }
- $limit = 5;
- // $exitCode = Artisan::call('cache:clear');
- // $exitCode = Artisan::call('route:clear');
- // $exitCode = Artisan::call('view:clear');
- // $exitCode = Artisan::call('config:cache');
- // $exitCode = Artisan::call('config:clear');
- $s = ['Placed','Send_to_Kitchen','On_Road','Accepted'];
- if($status=="new")
- {
- // $limit = 5;
- $s = ['Placed'];
- }
- if($status=="kitchen")
- $s = ['Accepted','Send_to_Kitchen'];
- if($status=="route")
- $s = ['On_Road'];
- //$orders = Orders::where('resto_id',$this->resto_id)->whereIN('status' ,$s)->orderBy('created_at','DESC')->paginate($limit);
- $start_page = isset($request->start_page)?$request->start_page-1:0;
- $order_limit = $request->number_of_orders;//2;//env('ORDER_NUMBER_ITEMS');
- $order_offset = $start_page * $order_limit;
- //dump($order_limit.' '.$order_offset);
- $orders = Orders::where('resto_id',$this->resto_id)->whereIn('status' ,$s)->skip($order_offset)->take($order_limit)->orderBy('created_at','DESC')->get();
- $orders_total = Orders::where('resto_id',$this->resto_id)->whereIn('status' ,$s)->count();
- $liveOrders = NULL;
- if(isset($orders) && $orders->count() > 0){
- foreach($orders as $order){
- $status = "";
- $bg="";
- $box_bg="";
- $remaining_min = 0;
- $order_delivery_time = !empty($order->delivery_preparation_time)?$order->delivery_preparation_time:0;
- $created_at = $order->created_at;
- // dump("Delivery Time : ".$order_delivery_time);
- $till_to = strtotime("+".$order_delivery_time.' minutes',strtotime($order->updated_at));
- // dump("Till To : ".date('H:i',$till_to));
- $updated_at = Carbon::parse(date('Y-m-d H:i',$till_to));
- $now = Carbon::now();
- // dump("Update time: ".$updated_at);
- $diff = $updated_at->diffInMinutes($now);
- $order_placed_diff = Carbon::parse($created_at)->diffInMinutes($now);
- // dump($order_placed_diff);
- // dump("Difference: ".$diff);
- if($diff <=$order_delivery_time )
- $remaining_min = $diff;
- // dump("Remain_min ".$remaining_min);
- if($order->status=="Placed"){
- $status = "New";
- $bg="blu-bg";
- $box_bg="bg-danger";
- $bg_color="#0ED0DF";
- }
- if($order->status=="Accepted" || $order->status=="Send_to_Kitchen"){
- $status = "In Prep";
- $bg="org-bg";
- $bg_color="orange";
- }
- if($order->status=="On_Road"){
- $status = "In Route";
- $bg = "blu-bg";
- $bg_color="#0ED0DF";
- }
- $liveOrders[] = array(
- 'id' => $order->id,
- 'order_ref' => $order->order_ref,
- 'campaign_type' => !empty($order->campaign_type) && $order->order_type!="dining"?ucwords($order->campaign_type):"Direct",
- 'status' => $status,
- 'bg'=>$bg,
- 'box_bg'=>$box_bg,
- 'bg_color'=> $bg_color,
- 'remaining_min'=>$remaining_min,
- 'remaining_min_milliseconds'=>strtotime($order->created_at),
- 'created_at' => Carbon::createFromTimeStamp(strtotime($order->created_at))->diffForHumans(),
- 'current_time'=>Carbon::now()->format('H:i'),
- 'updated_at'=> $updated_at->format('H:i'),
- 'placed_min'=>$order_placed_diff,
- );
- }
- }
- if(isset($liveOrders)){
- $liveOrders['pagination']= array(
- 'next_page'=>$start_page==0?2:$request->start_page+1,'total_orders'=>$orders_total
- );
- return response()->json(array('type'=>'success','orders'=>$liveOrders));
- }
- else
- echo json_encode(array('type'=>'error','message'=>'No order found'));
- }
- public function get_detail_json($id){
- $order = Orders::where('id',$id)->with(['order_with_discounts'])->first();
- $this->resto_id = CommonMethods::getRestuarantID();
- $resto = Restaurants::find($this->resto_id);
- $recipes = NULL;
- if(empty($order->selected_area_formatted) && $order->order_type=="delivery"){
- // dump($order->selected_area);
- $url = "https://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($order->selected_area)."&key=AIzaSyBFh6fzq8G7dgWLfz8kccvTlmPCSI_uWXQ";
- $curl = curl_init();
- curl_setopt_array($curl, array(
- CURLOPT_URL => $url,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_ENCODING => '',
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_TIMEOUT => 0,
- CURLOPT_FOLLOWLOCATION => true,
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
- CURLOPT_CUSTOMREQUEST => 'GET',
- ));
- $response = curl_exec($curl);
- curl_close($curl);
- //echo $response;
- $result = (json_decode($response));
- $formatted_address = isset($result->results[0])?$result->results[0]->formatted_address:"";
- $order->selected_area_formatted = $formatted_address;
- $order->save();
- }
- $country_code = $resto->countries->country_code;
- $new_phone = isset($order->customers->users)?$order->customers->users->email:NULL;
- if(isset($order->customers) && isset($order->customers->users)){
- $pos = strpos($order->customers->users->email, (string)$country_code);
- if ($pos !== false) {
- $new_phone = substr_replace($order->customers->users->email, '', $pos, strlen(env('COUNTRY_CODE')));
- }
- }
- if(isset($order->orderItems) && $order->orderItems->count() > 0){
- $extra_price = 0;
- $recipes = [];$ex = [];
- foreach($order->orderItems as $item){
- $ex= NULL;
- $recipe = $item->recipes;
- $cate_name = "";
- $categories = isset($recipe->categories)?$recipe->categories->pluck('category_id'):NULL;
- //dd($categories);
- if($categories){
- $categories = \App\Models\Categories::whereIn('id',$categories)->pluck('name')->toArray();
- $cate_name = isset($categories[0])?$categories[0]:"";
- }
- $extra_options = NULL;
- $opt = [];
- if(!empty($item->extra_options)){
- $ss_item = [];
- $extra_options = json_decode($item->extra_options);
- $extra_options_array = (json_decode($item->extra_options,true));
- if(isset($extra_options_array['sub_items']) && count($extra_options_array['sub_items']) > 0){
- $extra_sub_options = $extra_options_array['sub_items'];
- foreach($extra_sub_options as $k=>$s){
- $itm = \App\ExtraOptionItems::find($s['id']);
- $ss_item[$k] = array('id'=>$itm->id,'name'=>$itm->name);
- }
- }
- //$opt = "<ul>";
- if(isset($extra_options)){
- foreach($extra_options as $option){
- //dump($option);
- if(isset($option->id)){
- $itm = \App\Models\ExtraOptionItems::find($option->id);
- if(isset($itm)){
- $ex[] = array('id'=>$option->id,'price'=>$option->price,'name'=>$itm->name,'name_ar'=>$itm->name_arabic ,'sub_items'=>isset($ss_item[$option->id])?$ss_item:null);
- // dump($ex);
- $opt[] = $itm->name;
- // $opt.="<li>".$itm->name.' <span class="ml-2 badge badge-danger">'.($itm->price).'</span>';
- $extra_price = $extra_price+$option->price;
- if(isset($option->sub_items)){
- foreach($option->sub_items as $sub){
- $itm = \App\ExtraOptionItems::find($sub->sub_item_id);
- $extra_price = $extra_price+$sub->price;
- }
- }
- //$opt.="</li>";
- }
- }
- }
- }
- // $opt.="</ul>";
- }
- if(isset($extra_options->color_size)){
- $ex = array('color'=>$extra_options->color_size->color,'size'=>$extra_options->color_size->size);
- }
- $resto_metas = \App\Helpers\CommonMethods::getRestoMetas($resto);
- $imgix = isset($resto_metas['IMGIX_SOURCE']) && !empty($resto_metas['IMGIX_SOURCE'])?$resto_metas['IMGIX_SOURCE']:"https://meemappaws.imgix.net";
- $recipes[] = array(
- 'recipe_name'=>isset($item->recipes)?$item->recipes->name:"",
- 'recipe_arabic_name'=>isset($item->recipes)?$item->recipes->arabic_name:"",
- 'recipe_image' => isset($item->recipes->main_images)?CommonMethods::changeImageLinkAWStoImgix($item->recipes->main_images->file_name, $imgix,
- env('PRODUCT_THUMBNAIL_IMG_HEIGHT'),
- env('PRODUCT_THUMBNAIL_IMG_WIDTH'),
- 100):"",
- 'quantity'=>$item->qty,
- 'item_price'=>$item->price,
- 'discount_amount'=>$item->discount_amount,
- 'discount_type'=>$item->discount_type,
- 'total_price'=>($item->qty*$item->price),
- 'extra_options'=>$ex
- );
- }
- }
- $status = "";
- $bg="";
- $next_action="";
- $next_status="";
- $bg_color="";
- if($order->status=="Placed"){
- $status = "New";
- $bg="bg-danger";
- $box_bg="bg-danger";
- $next_action='Accepted';
- $next_status="Accepted";
- }
- if($order->status=="Accepted" || $order->status=="Send_to_Kitchen"){
- $status = "In Prep";
- $bg="org-bg";
- $next_action=$order->order_type=="delivery"?'On Road':'Pick Up';
- $next_status="On_Road";
- $bg_color="orange";
- }
- if($order->status=="On_Road"){
- $status = "In Route";
- $bg = "blu-bg";
- $bg_color="#0ED0DF";
- $next_action=$order->order_type=="delivery"?'Delivered':'Picked Up';
- $next_status="Has_Delivered";
- }
- $address = "";
- $delivery_notes = "";
- if(isset($order->customers) && isset($order->customers->customer_addresses)){
- $address .= isset($order->customers->customer_addresses[0])?ucwords($order->customers->customer_addresses[0]->label):NULL;
- $address.= isset($order->customers->customer_addresses[0])?", ".$order->customers->customer_addresses[0]->area:NULL;
- $address.= isset($order->customers->customer_addresses[0])?",".$order->customers->customer_addresses[0]->address:NULL;
- }
- if(isset($order->customers) && isset($order->customers->customer_addresses)){
- $delivery_notes .= isset($order->customers->customer_addresses[0])?$order->customers->customer_addresses[0]->instructions:NULL;
- }
- $outlet = Outlets::with('delivery_feature')->find($order->outlet_id);
- $customer_name = $order->customer_name;
- if(empty($customer_name)){
- $customer_name = $order->customers->name;
- }
- $estimated_time = isset($outlet->delivery_feature)?explode(' - ',$outlet->delivery_feature->estimated_time):[];
- $time_from = count($estimated_time) > 0?$estimated_time[0]:0;
- $time_to = 0;
- $r = [];
- if(count($estimated_time) > 1)
- $r = explode(":",$estimated_time[1]);
- $time_to = count($r) > 1 ?$r[0]:0;
- $type = count($r) > 1 ?$r[1]:"DAYS";
- $estimated_time = array(
- 'preparation_time'=>$time_from,
- 'preparation_delivery_time'=>$time_to,
- 'time_type'=>$type
- );
- if(session('app_lang') !==null){
- $lang = session('app_lang');
- app()->setLocale($lang);
- }
- $label_next_status = trans(strtolower('label.'.$next_status));
- $languages = Lang::get('language');
- dd($languages);
- $languagesFlip = array_flip($languages);
- $order_delivery_time = Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->format('Y-m-d H:i');
- $order = array(
- 'order_ref' => str_pad($order->order_ref,6,0,STR_PAD_LEFT),
- 'estimated_code'=>$estimated_time,
- 'brand_name' => $resto->name,
- 'outlet_name' => isset($outlet)?$outlet->name:"None",
- 'order_type' => $order->order_type=="dining"?"Dine in":ucwords($order->order_type),
- 'delivery_at' => !empty($order->order_deliver_time)?Carbon::parse($order->order_deliver_time)->format('d/M/Y h:i a'):date('d/M/Y h:i a',strtotime($order->created_at))." - ASAP",
- 'customer' =>$customer_name ,
- 'delivery_fee' => $order->delivery_fee,
- 'phone' => $new_phone,
- 'channel' => !empty($order->campaign_type) && $order->order_type!="dining"?ucwords($order->campaign_type):"Direct",
- 'order_placed' =>\Carbon\Carbon::createFromTimeStamp(strtotime($order->created_at))->diffForHumans(),
- 'payment' => $order->payment_mode=="COD"?"Cash":"Card",
- 'status'=>$status,
- 'bg'=>$bg,
- 'total_price' => $order->total_price,
- 'recipes'=>$recipes,
- 'next_action'=>$next_action,
- 'next_status' =>$next_status,
- 'next_status_label'=> ($label_next_status),
- 'address'=>$order->order_type!="paymentlink"?$address:$order->selected_area_formatted,
- 'geo_location' => isset($order->customers->customer_addresses[0])?$order->customers->customer_addresses[0]->selected_lat_lng:$order->selected_area_formatted,
- 'for_table'=>$order->for_table,
- 'formatted_address'=>$order->selected_area_formatted,
- 'google_formatted_address'=> $order->selected_area,
- 'order_instructions'=>$order->order_instructions,
- 'delivery_notes' => $order->order_type=="delivery"?$delivery_notes:$order->order_instructions,
- 'bg_color'=> $bg_color,
- 'recipient_name' => isset($order->recipients)?$order->recipients->recipient_name:null,
- 'recipient_phone' => isset($order->recipients)?$order->recipients->recipient_phone:null,
- 'greeting_message' => isset($order->recipients)?$order->recipients->greeting_message:null,
- 'discount_with_order'=>isset($order->order_with_discounts)?array(
- 'discount_type'=>$order->order_with_discounts->discount_type,
- 'discount_code'=>$order->order_with_discounts->discount_code,//TODO to display discount code
- 'discount_value'=>$order->order_with_discounts->discount_value,
- 'discounted_amount'=>$order->order_with_discounts->discounted_amount,
- 'total_order_value'=>$order->order_with_discounts->total_order_value,
- 'is_for_whole_order'=>$order->order_with_discounts->is_for_whole_order,
- 'is_delivery_discount'=>$order->order_with_discounts->is_delivery_discount,
- 'delivery_discount_value'=>$order->order_with_discounts->delivery_discount_value,
- 'delivery_discount_type'=>$order->order_with_discounts->delivery_discount_type,
- ):null,
- 'delivery_update_status_url'=>(env('DELIVERY_BOY_LINK').'?q='.base64_encode($order->id).'&r='.base64_encode($order->order_ref).'&time='.Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->timestamp),
- 'link_expire_time'=>Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->format('Y-m-d H:i')
- );
- echo json_encode($order);
- }
- public function getOrderDetail($id){
- $action = request()->get('action');
- $order = Orders::where('id',$id)->with(['order_with_discounts','orderItems','customers','restaurants','outlet'])->first();
- $resto = $order->restaurants;
- $resto_metas = \App\Helpers\CommonMethods::getRestoMetas($resto);
- $imgix = isset($resto_metas['IMGIX_SOURCE']) && !empty($resto_metas['IMGIX_SOURCE'])?$resto_metas['IMGIX_SOURCE']:"https://meemappaws.imgix.net";
- $grand_total_price = 0;
- $status = "";
- $bg="";
- $next_action="";
- $next_status="";
- $bg_color="";
- if($order->status=="Placed"){
- $status = "New";
- $bg="bg-danger";
- $box_bg="bg-danger";
- $next_action='Accepted';
- $next_status="Accepted";
- }
- if($order->status=="Accepted" || $order->status=="Send_to_Kitchen"){
- $status = "In Prep";
- $bg="org-bg";
- $next_action=$order->order_type=="delivery"?'On Road':'Pick Up';
- $next_status="On_Road";
- $bg_color="orange";
- }
- if($order->status=="On_Road"){
- $status = "In Route";
- $bg = "blu-bg";
- $bg_color="#0ED0DF";
- $next_action=$order->order_type=="delivery"?'Delivered':'Picked Up';
- $next_status="Has_Delivered";
- }
- $outlet = Outlets::with('delivery_feature')->find($order->outlet_id);
- $estimated_time = isset($outlet->delivery_feature)?explode(' - ',$outlet->delivery_feature->estimated_time):[];
- $time_from = count($estimated_time) > 0?$estimated_time[0]:0;
- $time_to = 0;
- $r = [];
- if(count($estimated_time) > 1)
- $r = explode(":",$estimated_time[1]);
- $time_to = count($r) > 1 ?$r[0]:0;
- $type = count($r) > 1 ?$r[1]:"DAYS";
- $estimated_time = array(
- 'preparation_time'=>$time_from,
- 'preparation_delivery_time'=>$time_to,
- 'time_type'=>$type
- );
- if(session('app_lang') !==null){
- $lang = session('app_lang');
- app()->setLocale($lang);
- }
- $now = Carbon::now();
- // dump("Update time: ".$updated_at);
- // dd($order);
- $label_next_status = trans('label.'.strtolower($next_status));
- $info = array(
- 'id'=>$order->id,
- 'order_ref' => str_pad($order->order_ref,6,0,STR_PAD_LEFT),
- 'order_url'=>$order->order_url,
- 'order_type'=>ucwords( $order->order_type),
- 'status'=>$status,
- 'bg'=>$bg,
- 'order_instructions'=>$order->order_instructions,
- 'delivery_at' => !empty($order->order_deliver_time)?Carbon::parse($order->order_deliver_time)->format('d/M/Y h:i a'):date('d/M/Y h:i a',strtotime($order->created_at))." - ASAP",
- 'channel'=>$order->campaign_type,
- 'order_placed' =>\Carbon\Carbon::createFromTimeStamp(strtotime($order->created_at))->diffForHumans(),
- 'payment' => $order->payment_mode=="COD"?"Cash":"Card",
- 'next_action'=>$next_action,
- 'next_status' =>$next_status,
- 'next_status_label'=> ($label_next_status),
- 'delivery_update_status_url'=>(env('DELIVERY_BOY_LINK').'?q='.base64_encode($order->id).'&r='.base64_encode($order->order_ref).'&time='.Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->timestamp),
- 'estimated_time'=>$estimated_time,
- 'order_placed'=>Carbon::parse($order->created_at)->diffForHumans(),
- 'tax_info'=>isset($resto_metas['DISPLAY_TAX_INFO'])?$resto_metas['DISPLAY_TAX_INFO']:"",
- 'order_created_at'=>Carbon::parse($order->created_at) ->format('d/M/Y h:i a'),
- 'order_updated_at'=>Carbon::parse($order->updated_at)->format('d/M/Y h:i a'),
- 'recipient_name' => isset($order->recipients)?$order->recipients->recipient_name:null,
- 'recipient_phone' => isset($order->recipients)?$order->recipients->recipient_phone:null,
- 'greeting_message' => isset($order->recipients)?$order->greeting_message:null,
- );
- $resto_outlet = array(
- 'business_name' => $resto->name,
- 'business_image'=>isset($resto->home_images)?CommonMethods::changeImageLinkAWStoImgix($resto->photos->file_name, $imgix,
- 300,
- 300,
- 100):"",
- 'outlet_name' => isset($order->outlet)?$order->outlet->name:"None",
- 'business_address'=>$resto->address,
- 'whatsapp_number_notification'=>$resto->whatsapp_number_notification
- );
- $address = $order->selected_area_formatted;
- $google_formatted = $order->selected_area;
- $geo_location = !empty($order->selected_lat_lng)?$order->selected_lat_lng:$order->selected_area;
- $lng_lat = $order->selected_lat_lng;
- if(empty($address)){
- $address = isset($order->customers) && isset($order->customers->main_address)?$order->customers->main_address->address:"N/A";
- $google_formatted = isset($order->customers) && isset($order->customers->main_address)?$order->customers->main_address->address:"N/A";
- $geo_location = isset($order->customers) && isset($order->customers->main_address)?$order->customers->main_address->selected_lat_lng:"N/A";;
- }
- if($lng_lat==""){
- //dump($order->customers->main_address);
- $lng_lat = isset($order->customers) && isset($order->customers->main_address)?$order->customers->main_address->selected_lat_lng:"";;
- }
- $country_code = $resto->countries->country_code;
- $new_phone = isset($order->customers->users)?$order->customers->users->email:NULL;
- if(isset($order->customers) && isset($order->customers->users)){
- $pos = strpos($order->customers->users->email, (string)$country_code);
- if ($pos !== false) {
- $new_phone = substr_replace($order->customers->users->email, '', $pos, strlen(env('COUNTRY_CODE')));
- }
- }
- $customer = array(
- 'customer_id'=>$order->customer_id,
- 'customer_name' => empty($order->customer_name) && isset($order->customers)?$order->customers->name:$order->customer_name,
- 'customer_phone'=>$new_phone,
- 'deliveryAddress'=>$address,
- 'google_formatted_address'=>$google_formatted,
- 'geo_location' =>$geo_location,
- 'geo_points'=>$lng_lat,
- 'delivery_instructions'=>isset($order->customers) && isset($order->customers->main_address)?$order->customers->main_address->instructions:"N/A"
- );
- $orderItems = isset($order->orderItems) && $order->orderItems->count() > 0?$order->orderItems:null;
- $order_items = [];
- $order_discounts = $order->order_with_discounts;
- $discountInfo = Null;
- $is_discount = isset($order_discounts)?true:false;
- if($is_discount){
- $discount = $order_discounts->discounts;
- //dd($order_discounts);
- // dump($order_discounts);
- $discount = Discounts::find($order_discounts->discount_id);
- //dd($discount);
- $discountInfo = array(
- 'discount_name' => $discount->discount_name,
- 'discount_code' => $discount->discount_code,
- 'discount_amount' => $discount->amount.($discount->discount_type=="percentage"?"%":""),
- 'start_date' => $discount->start_datetime,
- 'end_date' => $discount->end_datetime
- );
- }
- $is_delivery_discount = isset($order_discounts) && $order_discounts->is_delivery_discount=="Yes"?true:false;
- $is_whole_order_discount = false;
- $applied_discount = 0;
- $discounted_delivery_price = 0;
- $discounted_price = 0;
- $applied_delivery_discount = 0;
- if($is_discount){
- $is_whole_order_discount = $order_discounts->is_for_whole_order=="Yes"?true:false;
- if($order_discounts->discount_type=="percentage")
- $applied_discount = $order_discounts->discount_value/100;
- else
- $applied_discount = $order_discounts->discount_value;
- if($order_discounts->is_delivery_discount=="Yes"){
- if($order_discounts->delivery_discount_type=="percentage")
- $applied_delivery_discount = $order_discounts->delivery_discount_value/100;
- else
- $applied_delivery_discount = $order_discounts->delivery_discount_value;
- }
- if(isset($order_discounts) && $order_discounts->is_delivery_discount=="Yes" && $order->delivery_fee > 0){
- if($order_discounts->delivery_discount_type=="percentage")
- $discounted_delivery_price = $order->delivery_fee * $applied_delivery_discount;
- else
- $discounted_delivery_price = $applied_delivery_discount;
- }
- }
- $order_loyalty = $order->loyalty_with_orders;
- $is_loyalty = isset($order_loyalty)?true:false;
- $loyalty_amount = 0;
- if($is_loyalty){
- $loyalty_amount = $order_loyalty->loyalty_amount;
- }
- if(isset($orderItems)){
- foreach($orderItems as $item){
- if(isset($item->recipes)){
- $sub_items = [];
- if(!empty($item->extra_options)){
- $extra_options_array = (json_decode($item->extra_options,true));
- if(isset($extra_options_array) && count($extra_options_array) > 0){
- $extra_sub_options = $extra_options_array;
- if(count($extra_sub_options) > 0){
- foreach($extra_sub_options as $sub_option){
- if(isset($sub_option['id'])){
- $sub_opt = ExtraOptionItems::find($sub_option['id']);
- $qty = isset($sub_items[$sub_opt['id']])?$sub_items[$sub_opt['id']]['quantity']+1:1;
- $grand_total_price = $grand_total_price+($sub_option['price'] * $qty*$item->qty);
- $sub_items[$sub_opt['id']] = array(
- 'id'=>$sub_option['id'],
- 'name'=>strip_tags($sub_opt->name),
- 'price'=>$sub_option['price'] > 0?array('normal_price'=>$sub_option['price'],
- 'formatted_price'=>number_format($sub_option['price'],2).' '.$resto_metas['BUSSINESS_CCY']):null,
- 'quantity'=>$qty
- );
- }else{
- if(isset($extra_sub_options['color_size'])){
- $color = '<div style="width: 20px; height: 20px; background-color: '.$extra_sub_options['color_size']['color'].'; border-radius: 20px; float:right;;margin-left: 10px"></div>';
- $size = '<div style="float:right;font-size: 14px;margin-left: 8px;font-weight: 700;"> '.$extra_sub_options['color_size']['size'].'</div>';
- $name = $color. ' '.$size;
- $sub_items[] = array('id'=>'color_size','name'=>$name,'price'=>'N/A','quantity'=>1);
- }
- ;
- }
- //dump($sub_opt->name);
- }
- }
- }
- }
- // $extra_options = json_decode($item->extra_options);
- // dd($item->extra_options);
- // if(isset($item->extra_options->color_size)){
- // $sub_items[] = array('color'=>$extra_options->color_size->color,'size'=>$extra_options->color_size->size);
- // }
- $order_items[] = array(
- 'item_name'=>isset($item->recipes)?$item->recipes->name:"N/A",
- 'item_price'=>isset($item->price)?array('normal_price'=>$item->price,'formatted_price'=>number_format($item->price).' '. $resto_metas['BUSSINESS_CCY']):"N/A",
- 'item_arabic_name'=>isset($item->recipes)?$item->recipes->arabic_name:"",
- 'item_image' => isset($item->recipes->main_images)?CommonMethods::changeImageLinkAWStoImgix($item->recipes->main_images->file_name, $imgix,
- env('PRODUCT_THUMBNAIL_IMG_HEIGHT'),
- env('PRODUCT_THUMBNAIL_IMG_WIDTH'),
- 100):"",
- 'quantity'=>$item->qty,
- 'sub_items'=>count($sub_items) > 0 ?array_values($sub_items):null,
- );
- $grand_total_price = $grand_total_price+($item->price * $item->qty);
- }
- }
- }
- //dump($grand_total_price);
- $sub_total = $grand_total_price;
- if($is_whole_order_discount){
- if($order_discounts->discount_type=="percentage")
- $discounted_price = $grand_total_price * $applied_discount;
- else
- $discounted_price = $applied_discount;
- }
- $grand_total_price = $grand_total_price + (!empty($order->delivery_fee)?$order->delivery_fee:0);
- if($is_loyalty){
- $grand_total_price = $grand_total_price-$loyalty_amount;
- }
- $order_basket = array(
- 'items'=>$order_items,
- 'delivery_fee'=>array('normal_price'=>$order->delivery_fee,'formatted_price'=>number_format($order->delivery_fee,2).' '. $resto_metas['BUSSINESS_CCY']),
- 'order_total_price'=>array('normal_price'=>$order->total_price,'formatted_price'=>number_format($order->total_price,2).' '. $resto_metas['BUSSINESS_CCY']),
- 'is_discount'=>$is_discount,
- 'discount_info'=>$discountInfo,
- 'is_delivery_discount'=>$is_delivery_discount,
- 'is_loyalty'=>$is_loyalty,
- 'loyalty_amount'=>$is_loyalty?array('normal_price'=>$loyalty_amount,'formatted_price'=>number_format($loyalty_amount,2).' '.$resto_metas['BUSSINESS_CCY']):null,
- 'discounted_amount'=>array('normal_price'=>round($discounted_price,2),'formatted_price'=>number_format($discounted_price,2).' '. $resto_metas['BUSSINESS_CCY']),
- 'delivery_discounted_amount'=>array('normal_price'=>round($discounted_delivery_price,2),'formatted_price'=>number_format($discounted_delivery_price,2).' ' . $resto_metas['BUSSINESS_CCY']),
- 'discounted_total_price'=>($grand_total_price - $discounted_price-$discounted_delivery_price).' ' . $resto_metas['BUSSINESS_CCY'],
- 'discounted_total_price'=>array('normal_price'=>($grand_total_price - $discounted_price-$discounted_delivery_price),'formatted_price'=>number_format(($grand_total_price - $discounted_price-$discounted_delivery_price),2).' '. $resto_metas['BUSSINESS_CCY']),
- 'sub_total'=>array('normal_price'=>($sub_total),'formatted_price'=>number_format(($sub_total ),2).' '. $resto_metas['BUSSINESS_CCY']),
- 'grand_total'=>array('normal_price'=>$grand_total_price,'formatted_price'=>number_format($grand_total_price,2).' '. $resto_metas['BUSSINESS_CCY']),
- );
- if($order_basket['sub_total']['normal_price'] <=0){
- $order_basket['sub_total'] = $order_basket['order_total_price'];
- $order_basket['grand_total'] = $order_basket['order_total_price'];
- }
- $delivery_boy = array(
- 'delivery_update_status_url'=>(env('DELIVERY_BOY_LINK').'?q='.base64_encode($order->id).'&r='.base64_encode($order->order_ref).'&time='.Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->timestamp),
- 'link_expire_time'=>Carbon::now()->addMinutes(env('DELIVERY_BOY_LINK_EXPIRY'))->format('Y-m-d H:i')
- );
- $orderDetails = array(
- 'business_info'=>$resto_outlet,
- 'order_info'=>$info,
- 'customer'=>$customer,
- 'basket'=>$order_basket,
- 'delivery_boy'=>$delivery_boy
- );
- if($action && !empty($action) && $action=="print"){
- return view('orders.print-order',['order'=>$orderDetails]);
- }
- return response()->json($orderDetails,200);
- }
- public function show($id){
- $order = Orders::find($id);
- $activities = OrderActivities::where('order_id',$id)->pluck('status')->toArray();
- // dd($activities);
- $data = [
- 'order' => $order,
- 'activities' =>$activities
- ];
- return view('orders.show',$data);
- }
- public function update_status(Request $request){
- $id = $request->id;
- $status = $request->status;
- $order = Orders::find($id);
- if($status==$order->status){
- // if(1){
- return response()->json(array('type'=>'error','message'=>'Order is already updated as '.$status));
- }
- $this->resto_id = CommonMethods::getRestuarantID();
- $resto = Restaurants::find($this->resto_id);
- $time_zone = "Asia/Dubai";
- if(!empty($resto->time_zone)){
- config(['app.timezone' => $resto->time_zone]);
- date_default_timezone_set($resto->time_zone);
- }
- if($status=="Accepted"){
- //If credit card payment success then update order count
- //$disCountCounter = DiscountWithOrder::where('order_id',$order->id);
- //$disCountCounter->is_parked=0;
- //$disCountCounter->save();// Giving error fix later
- DB::statement("UPDATE tb_dm_order_with_discount SET is_parked=0 where order_id = ".$id);
- //Logic to check if the order is availed or not
- $order->preparation_time = !empty($request->preparation_time)?$request->preparation_time:"";
- $order->delivery_preparation_time = !empty($request->preperation_delivery)?$request->preperation_delivery:"";
- $order->preparation_type = !empty($request->preparation_type)?$request->preparation_type:"";
- }
- $order->status = $status;
- $order->save();
- $loyltyStatus = "";
- $rejectedStatus = ['Rejected','Cancelled_by_Customer','Rejected_by_User','Close'];
- if(in_array($status,$rejectedStatus))
- $loyltyStatus = 'cancelled';
- if($status=="Has_Delivered")
- $loyltyStatus = "processed";
- // if($status=="Has_Delivered"){
- if(!empty($loyltyStatus)){
- $loylty = CustomerLoyaltyHistories::where('order_id',$id)->where('status','initial')->first();
- // dump($loylty);
- if(isset($loylty)){
- // $loylty->status = $loyltyStatus;
- //$loylty->save();
- $loylty = CustomerLoyaltyHistories::where('order_id',$id)->where('status','initial')->update(['status'=>$loyltyStatus]);
- }
- }
- // }
- $restuarant = Restaurants::find($order->resto_id);
- if(strtolower($status)=="accepted" || strtolower($status)=="rejected" || strtolower($status)=="rejected_by_user"){
- if(!empty($restuarant->domain_name))
- $url = $restuarant->domain_name.$restuarant->resto_unique_name."/track/order?order=".$id."&ref=".$order->order_ref;
- else
- $url = env('QRCODE_HOST_ORDER').$restuarant->resto_unique_name."/track/order?order=".$id."&ref=".$order->order_ref;
- //dump($url);
- if(strtolower($status)=="accepted"){
- // $this->sendAcceptOrderNotification($order);
- $message =env('ORDER_ACCEPTED_MESSAGE').' '.$url;
- $message = "Dear Customer, Your Order #".$order->order_ref." is accepted , kindly track your order at ".$url." ";
- if($restuarant->default_lang=="ar"){
- $message = "عزيزي العميل طلبك {{1}} تم {{2}} ، لتتبع طلبك افتح الرابط {{3}}";
- $message = str_replace(["{{1}}",'{{2}}','{{3}}'],["#".$order->order_ref,'قبوله',$url],$message);
- // echo $message;
- }
- }
- else{
- $message = env('ORDER_CANCELLED_MESSAGE');
- $message = "Dear Customer, Your Order #".$order->order_ref." is rejected , kindly track your order at ".$url." ";
- $message = "Dear Customer, Your Order #".$order->order_ref." is cancelled.";
- $restuarant = Restaurants::find($order->resto_id);
- if($restuarant->default_lang=="ar"){
- //$message = "عزيزي العميل طلبك {{1}} تم {{2}} ، لتتبع طلبك افتح الرابط {{3}}";
- //$url = "";
- // $message = str_replace(["{{1}}",'{{2}}','{{3}}'],["#".$order->order_ref,'رفضه',$url],$message);
- $message = "عزيزي العميل، طلبك {{1}} تم {{2}}";
- $url = "";
- $message = str_replace(["{{1}}",'{{2}}'],["#".$order->order_ref,'الغاؤه ، نعتذر عن عدم القدرة على تلبية طلبك'],$message);
- // echo $message;
- }
- }
- $mobile_number = isset($order->customers)?$order->customers->users->email:NULL;
- //$mobile_number = "923459635387";
- if($restuarant->allow_whatsapp_notifications_to_customera=="Yes") {
- if (isset($mobile_number)) {
- $sms = new RestoSMSs();
- $sms->resto_id = $order->resto_id;
- $sms->msg = $message;
- $sms->msg_purpose = "TRACK_ORDER_SMS";
- $sms->msisdn = $mobile_number;
- $sms->status = 1;
- $sms->save();
- $sms_id = $sms->id;
- $usrname = 'meem_food_order';
- if (env('OTP_TEST_IN_DEV') == "1") {//ALWAYS ZERO IN PROD
- $usrname = 'meem_food_order1';
- }
- $data = [
- 'usrname' => $usrname,
- 'pwd' => 'meem@kkew#9',
- 'msisdn' => $mobile_number,
- 'smstxt' => $message,
- 'pricepoint' => 1,
- 'jsonstr' => 'Future'
- ];
- Log::info('TRACK_ORDER_SMS Data: ' . json_encode($data));
- if (env('OTP_DONT_SEND_REQ') == "0") {//IN PROD THIS SHOULD BE 0 IN PROD
- $wsdlurl = env('WHATSAPP_OPT_API');
- // $this->sendWhatsappQueueMessage($wsdlurl,$data,$sms_id);
- $params = array(
- 'message_data' => $data,
- 'sms_id' => $sms_id,
- 'url' => $wsdlurl
- );
- dispatch(new SendOrderNotifications($params));
- }
- }
- }else{
- $data = [
- 'msisdn' => $mobile_number,
- 'smstxt' => $message,
- 'pricepoint'=>1,
- 'jsonstr'=>'Future'
- ];
- Log::info('Without Whatsapp TRACK_ORDER_SMS Data: '.json_encode($data));
- }
- }
- OrderActivities::add_order_activity($id,$status);
- $data['order_id'] = $id;
- $data['order_ref'] = $order->order_ref;
- $data['customer_id'] = $order->customer_id;
- $data['status'] = $status;
- $data['order_resto_id'] = $order->resto_id;
- $data['notification_for'] ="update-order-status";
- dispatch(new SendOrderPusherNotification($data));
- }
- public function update_instruction(Request $request){
- $id = $request->id;
- $txt = $request->text;
- $order = Orders::find($id);
- $order->order_instructions = $txt;
- $order->save();
- }
- public function ajax_order(){
- $offset = request()->get('start');
- $limit = request()->get('length');
- $draw = request()->get('draw');
- // $offset = ($offset-1) * $limit;
- $this->resto_id = CommonMethods::getRestuarantID();
- // $resto = Restaurants::find($this->resto_id);
- $orders = Orders::where('resto_id',$this->resto_id )->orderBy('created_at','DESC')->offset($offset)->limit($limit)->get();
- $custom_status['Placed'] = ['Accepted'=>'Accepted','Rejected'=>'Rejected', 'Rejected_by_User'=>'Rejected by User'];
- $custom_status['Send_to_Kitchen'] = ['On_Road'=>'On the Way','Rejected'=>'Rejected', 'Rejected_by_User'=>'Rejected by User'];
- $custom_status['On_Road'] = ['Has_Delivered'=>'Delivered','Rejected'=>'Rejected', 'Rejected_by_User'=>'Rejected by User'];
- $custom_statuses = ['Rejected_by_User'=>'Rejected by User','Accepted'=>'Accepted','Rejected'=>'Rejected','Placed'=>'Placed','Send_to_Kitchen'=>'Send to Kitchen','On_Road'=>'On the Way', 'Has_Delivered'=>'Delivered','Served'=>"Served","Cancelled_by_Customer"=>"Cancelled"];
- $custom_status['Accepted'] = ['On_Road'=>'On the Way','Rejected'=>'Rejected', 'Rejected_by_User'=>'Rejected by User'];
- $data = NULL;
- foreach($orders as $order){
- $data[] = [
- $order->order_ref,
- CommonMethods::formatDateTime($order->created_at),
- $order->customer_name,
- isset($order->customers)?(str_replace(env('COUNTRY_CODE'),'',$order->customers->users->email)):"",
- isset($order->customers) && isset($order->customers->customer_addresses[0])?$order->customers->customer_addresses[0]->address:"",
- number_format($order->total_price+$order->delivery_fee),
- isset($custom_statuses[$order->status])?$custom_statuses[$order->status]:"",
- NULL
- ];
- }
- return response()->json(array('data'=>$data));
- }
- public function print_order($id){
- $order = Orders::find($id);
- $data = [
- 'order' => $order
- ];
- return view('orders.print-order',$data);
- }
- public function order_history(){
- //$recent_till = Carbon::now()->subDays(2);;
- $this->resto_id = CommonMethods::getRestuarantID();
- if(!isset($_GET['order_ref']))
- $orders = Orders::where('resto_id',$this->resto_id)->whereIN('status' ,['Rejected_by_User','Rejected','Has_Delivered','Close'])->orderBy('created_at','DESC')->whereNull('deleted_at')->paginate(50);
- else{
- $params = $_GET;
- $orders = Orders::whereNull('deleted_at')->whereIN('status' ,['Rejected_by_User','Rejected','Has_Delivered','Close','Accepted'])->orderBy('created_at','DESC')->where('resto_id',$this->resto_id)->where(function ($q) use($params){
- if(isset($params['order_ref']) && !empty($params['order_ref'])){
- $q->where('order_ref',$params['order_ref']);
- }
- if(isset($params['outlet_id']) && !empty($params['outlet_id'])){
- $q->where('outlet_id',$params['outlet_id']);
- }
- if(isset($params['order_status']) && !empty($params['order_status'])){
- $q->where('status',$params['order_status']);
- }
- if(isset($params['date_range']) && !empty($params['date_range'])){
- $dates = explode(' - ',$params['date_range']);
- $start_date = Carbon::parse($dates[0])->subDay()->format('Y-m-d');
- $end_date = Carbon::parse($dates[1])->addDay()->format('Y-m-d');
- $q->whereBetween('created_at',[$start_date,$end_date]);
- // $q->where('outlet_id',$params['outlet_id']);
- }
- if(isset($params['phone_number']) && !empty($params['phone_number'])){
- $q->whereHas('customers.users',function($r) use($params){
- $r->where('email','LIKE','%'.$params['phone_number'].'%');
- });
- }
- })->get();
- }
- // $orders = Auth::user()->restaurants->orders;
- $data = [
- 'orders' => $orders
- ];
- return view('orders.orders-history',$data);
- }
- function send_message($mobile_number,$message,$sms_id){
- dd('ETST');
- // $mobile_number = '9647834000012';
- $usrname = 'meem_food_order';
- //OTP_TEST_IN_DEV0,DISABLE_OTP=0,CONSIDER_OTP_ALWAYS_TRUE=0 in prod to make it live
- if(env('OTP_TEST_IN_DEV')=="1"){//ALWAYS ZERO IN PROD
- $usrname = 'meem_food_order1';
- }
- $data = [
- 'usrname'=>$usrname,
- 'pwd'=>'meem@kkew#9',
- 'msisdn' => $mobile_number,
- 'smstxt' => $message,
- 'pricepoint'=>1,
- 'jsonstr'=>'Future'
- ];
- dd($data);
- // $wsdlurl = 'https://taiftec.com/blkdlr/bulk/sendmt';
- $wsdlurl="";//Uncomment in prod
- Log::info('SMS Data: '.json_encode($data));
- if(env('OTP_DONT_SEND_REQ')=="0"){//IN PROD THIS SHOULD BE 0 IN PROD
- $wsdlurl = env('SMS_OPT_API');
- $response = Http::acceptJson()->post($wsdlurl,$data);
- $response = $response->json();
- $response = json_encode($response);
- Log::info('SMS Response: '.$response);
- $sms = RestoSMSs::find($sms_id);
- $sms->otp_req = json_encode($data);
- $sms->otp_res = $response;
- $sms->save();
- }
- if(env('OTP_CONSIDER_ALWAYS_TRUE')=="1"){//IN PROD THIS SHOULD BE 0 IN PROD
- $a = [
- "reqid" => "20210611025322000469",
- "mtid" => "18",
- "errcode" => 1,
- "status" => "ACCEPTED"];
- $response = json_encode($a);
- $access_token = Session::get('access_token');
- $sms_url = env('RESTO_API_URL').'update/sms';
- Http::post($sms_url,['sms_id'=>$sms_id,'req'=>json_encode($data),'resp'=>$response]);
- return $response;
- }
- // dd($response->json());
- }
- public function sendWhatsappQueueMessage($url, $data,$sms_id){
- $response = Http::acceptJson()->post($url,$data);
- $response = $response->json();
- $response = json_encode($response);
- Log::info('TRACK_ORDER_SMS Response: '.$response);
- $sms = RestoSMSs::find($sms_id);
- $sms->otp_req = json_encode($data);
- $resp = json_decode($response);
- $sms->otp_req_status = strtoupper($resp->status)=="ACCEPTED"?"SUCCESS":"FAIL";
- $sms->otp_res = $response;
- $sms->save();
- }
- }
|