@extends('layouts.admin') @section('title' , 'Location Logs') @section('breadcrumb-item') @endsection @section('styles') @endsection @section('content')

Location Logs

@csrf
@if(isset($locations))
@endif
@php $index = 1; @endphp @foreach($locations as $location) @endforeach
Sr No: Summary Action Date & Time
{{ $index++ }} @if ($location['type'] === 'order_declined' && !empty($location['declined_order']['shop']['name'])) {{ $location['declined_order']['shop']['name'] }} @elseif ($location['type'] === 'payment_received' && !empty($location['payment']['order']['shop']['name'])) {{ $location['payment']['order']['shop']['name'] }} @elseif (!empty($location['order']['shop']['name'])) {{ $location['order']['shop']['name'] }} @else NULL @endif {{ $location['type'] ?? 'NULL' }} {{ isset($location['created_at']) ? date('Y-m-d h:i A', strtotime($location['created_at'])) : 'NULL' }}
@endsection @section('scripts') @endsection