@extends('layouts.admin') @section('title' , 'Location Logs') @section('breadcrumb-item')
Location Logs
| 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' }} |