@extends('layouts.store.store') @section('title', 'Store Dashboard') @section('content')
@include('partials.header') @include('layouts.store.sidebar')
Store Name:
{{$store->store_name}}
Store Number:
{{$store->store_number}}
Division:
{{$store->divisions->name}}
Region:
{{$store->regions->name}}
Area:
{{$store->areas->name}}
Address:
{{$store->address}}
City:
{{$store->city}}
State:
{{$store->state}}
Zip Code:
{{$store->zipcode}}
Email:
{{$store->email}}
Phone No:
{{$store->phone}}
@if($order)
End-to-End Order Management Support Process
    @php $i=1; @endphp @foreach($statuses as $status) @php $orderid = $order->id; $helper = new \App\Helpers\Helpers(); $history = $helper->check_status_history($orderid,$status); $history_count = $helper->status_history_count($orderid,$status); if($history_count !=0){ $status_date = $history->created_at->format('m/d/Y'); } else { $status_date = '-'; } @endphp
  • {{$status_date}} {{$status}}
  • @php $i++; @endphp @endforeach
@endif
Overview Icon
Next Re-calibration Due in

90 Days

Overview Icon
Wrenches In Hand

{{ count($store->wrenches) }}

@stop