@extends('layouts.load') @section('content') {{-- ADD ORDER TRACKING --}}
{{ csrf_field() }} @include('includes.admin.form-both')
@component('admin.components.input-localized', ['required' => true, 'type' => 'textarea']) @slot('name') title @endslot @slot('placeholder') {{ __('Title') }} @endslot {{ __('Title') }} * @endcomponent
@component('admin.components.input-localized', ['type' => 'textarea']) @slot('name') text @endslot @slot('placeholder') {{ __('Details') }} @endslot {{ __('Details') }} @endcomponent

{{ __('TRACKING DETAILS') }}

{{-- ORDER TRACKING DETAILS --}}
id) }}> @foreach ($order->tracks as $track) @endforeach
{{ __('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)) }}
@endsection @section('scripts') @endsection