@extends('layouts.users.app') @section('content')
| {{ __('Name') }} | {{ $machineRequest->name }} |
|---|---|
| {{ __('Email') }} | {{ $machineRequest->email }} |
| {{ __('Phone') }} | {{ $machineRequest->phone }} |
| {{ __('Country') }} | {{ $machineRequest->country }} |
| {{ __('Division') }} | {{ optional($machineRequest->division)->name ?? '-' }} |
| {{ __('Requested Machine') }} | {{ optional($machineRequest->saleUsedMachine)->title ?? optional($machineRequest->saleUsedMachine)->name ?? '-' }} |
| {{ __('Message') }} | {{ $machineRequest->message }} |
| {{ __('Created At') }} | {{ $machineRequest->created_at->format('Y-m-d H:i:s') }} |
| {{ __('Last Updated') }} | {{ $machineRequest->updated_at->format('Y-m-d H:i:s') }} |