@extends('layouts.'.env('THEME')) @section('moreStyle') @include('staff.schedule.style') @endsection @section('content')
{!! Form::open( ['route' => ['admin.customer_notes_for_list'], 'id' => 'list_filter' ]) !!} {!! Form::token() !!} {!! Form::text('field', null) !!} {!! Form::text('comma_values', '') !!} {!! Form::close() !!} @php $count = 1; @endphp @foreach($results as $r) @php $count++; @endphp @endforeach
email stripe_id name uprn notes
{{ $count }} @if(!empty($r['lead'])) {{ $r['lead']->email }} @endif {{ $r['stripe_cus_id'] }} @if(!empty($r['lead'])) {{ $r['lead']->fullname ?? ''}} @endif @if(!empty($r['lead']->address)) {{ $r['lead']->address->uprn ?? ''}} @endif @foreach($r['notes'] as $note) {{ $note['date'] }}: {!! $note['body'] !!}
@endforeach
@endsection @section('script') @endsection