@extends('app') @section('content')
@if((Auth::user()->role ?? null) !== 'Tècnic')
Editar
@csrf @method('PATCH')
@csrf @method('DELETE')
@endif

{{ $complementaryService->service_type ?? 'No especificat' }}

{{ $complementaryService->service_responsible ?? 'No assignat' }}

Informació

{{ $complementaryService->start_date ? \Carbon\Carbon::parse($complementaryService->start_date)->format('d/m/Y') : 'No especificada' }}

{{ $complementaryService->end_date ? \Carbon\Carbon::parse($complementaryService->end_date)->format('d/m/Y') : 'No especificada' }}

@if(isset($complementaryService->documents)) @endif @if(isset($complementaryService->notes)) @endif @include('components.partials.mainToasts')
@endsection