@extends('layouts.load') @section('content') {{-- ADD ORDER TRACKING --}}
| {{ __('Title') }} | {{ __('Details') }} | {{ __('Date') }} | {{ __('Time') }} | {{ __('Options') }} |
|---|---|---|---|---|
| {{ $track->title }} @foreach ($locales as $loc) @if ($loc->locale === $lang->locale) @continue @endif {{ $track->translate($loc->locale)->title ?? $track->title }} @endforeach | {{ $track->text ?? '' }} @foreach ($locales as $loc) @if ($loc->locale === $lang->locale) @continue @endif {{ $track->translate($loc->locale)->text ?? $track->text }} @endforeach | {{ date('Y-m-d', strtotime($track->created_at)) }} | {{ date('h:i:s:a', strtotime($track->created_at)) }} |