@extends('layouts.admin') @section('pageTitle') Best Insurance | Completed Leads @stop @section('pageCss') @stop @section('content')
{!!csrf_field()!!}
@if(@count($information->notes)>0)

Total Notes : {{@count($information->notes)}}

@foreach($information->notes as $note)
{!!$note->added_user->profile->first_name!!} Added note on {!!$note->created_at->format('d/m/Y H:i:s')!!}
{!!$note->notes!!}
@endforeach @else

No Notes till now

@endif
@stop @section('pageBottomJs') @stop