@include('flash_msg')
NAME: {{ $lead->name }}
EMAIL: {{ $lead->email }}
PHONE: {{ $lead->phone }}
MESSAGE: {{ $lead->message }}
@if(!empty($remarks))
@foreach($remarks as $key=>$value)
@endforeach
@if ($remarks->count() == 0)
@endif
@endif
# | REMARK | DATE | Action | ||
---|---|---|---|---|---|
{{ ++$key }} | {{ $value->remark }} | {{ $value->created_at}} | |||
No remarks to display. | |||||
# | Remark | Date | Action |
@if ($remarks instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
Displaying {{ $remarks->count() }} of {{ $remarks->total() }} remarks.
@elseDisplaying {{ $remarks->count() }} remarks.
@endif