@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() !!}
|
email |
stripe_id |
name |
uprn |
notes |
@php $count = 1; @endphp
@foreach($results as $r)
| {{ $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
|
@php $count++; @endphp
@endforeach
@endsection
@section('script')
@endsection