{{-- resources/views/itins/mine.blade.php --}} @extends('layouts.base') @section('title', __('My itineraries')) @section('content')
| {{ __('Name') }} | {{ __('Scheduled date') }} | {{ __('Company') }} | {{ __('Manager') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| {{ $it->name ?? '—' }} | {{-- Date planifiée --}}@if(!empty($it->scheduled_date)) {{ \Illuminate\Support\Carbon::parse($it->scheduled_date)->format('d/m/Y') }} @else — @endif | {{-- Société --}}{{ $it->society_name ?? '—' }} | {{-- Responsable (admin pro / manager) --}}{{ $managerName !== '' ? $managerName : '—' }} | {{-- Actions --}}{{ __('Map') }} |