Good morning!
@if(sizeof($overdue_businesses) > 0)
The following clients have past due balances:
@foreach($overdue_businesses as $business)
- {{ Form::label_link(action('SuperAdminBusinessController@billing', compact('business')), $business->company) }}
{{ Form::label_ex( "(". \App\Helpers\Format_Helper::format_int_currency($business->overdue_amount)." past due)") }}
@endforeach
@endif
@if(sizeof($today_tickets) > 0)
The following tickets are assigned to you and have due dates of today:
@foreach($today_tickets as $ticket)
- {{ Form::label_link($ticket->get_edit_url(false), $ticket->subject_line) }}
@endforeach
@endif
@if(sizeof($today_tickets_created) > 0)
The following tickets were created by you and have due dates of today:
@foreach($today_tickets_created as $ticket)
- {{ Form::label_link($ticket->get_edit_url(false), $ticket->subject_line) }}
@endforeach
@endif
@if(sizeof($overdue_tickets) > 0)
The following tickets are assigned to you and are overdue:
@foreach($overdue_tickets as $ticket)
- {{ Form::label_link($ticket->get_edit_url(false), $ticket->subject_line) }}
@endforeach
@endif
@if(sizeof($overdue_tickets_created) > 0)
The following tickets were created by you and are overdue:
@foreach($overdue_tickets_created as $ticket)
- {{ Form::label_link($ticket->get_edit_url(false), $ticket->subject_line) }}
@endforeach
@endif
Have a good one!