@extends('layouts.app-bo') @section('title', __('notes.note_management')) @section('content')

{{ __('Détails de la note') }}

{{ $note->label_fr }}

{{ $note->label }}

{{ __('ID') }}: {{ $note->id }}

{{ __('notes.form.label.label') }}:
{!! $note->labelFull !!}

{{ __('app.button.back_to_list') }} @if(auth()->user()->company->id === $note->company) {{ __('app.button.edit') }}
@csrf @method('DELETE')
@endif
@endsection