@extends('layouts.app') @section('link') @endsection @section('style') @endsection @section('content')
{{strtoupper(__('texte.objects_arr.show.id'))}} | {{__('texte.objects_arr.show.user')}} | {{__('texte.objects_arr.show.note')}} | {{__('texte.objects_arr.show.important')}} | {{__('texte.objects_arr.show.new')}} | {{__('texte.objects_arr.show.created_at')}} | {{__('texte.objects_arr.show.delete')}} | @foreach ($object->notes as $note)
---|---|---|---|---|---|---|
{{$note->id}} | {{$note->user->name}} | {{$note->note}} | {{$note->important==1 ? __('texte.objects_arr.show.yes') : __('texte.objects_arr.show.no')}} | {{$note->read==0 ? __('texte.objects_arr.show.yes') : __('texte.objects_arr.show.no')}} | {{date("d.m.Y H:i",strtotime($note->created_at))}} |
|