@extends('dashboard.core')
@section('dashboard-heading')
@if($export && count($rows) > 0)
@endif
@if($create)
New
@endif
@endsection
@section('dashboard-body')
@if(count($paramdisplay))
@foreach($paramdisplay as $param)
Showing {{ $heading }} with a {{ $param['title'] }} of "{{ $param['value'] }}"
@endforeach
@endif
@if($filter)
@if(!$paginate)
@else
@endif
@endif
@if($paginate && $rows->lastPage() !== 1)
@endif
@if(request()->query('search', null) != null && count($rows) == 0)
No Matching {{ $heading }} Found
@else
@foreach($rows as $row)
-
@if($sortcol != false)
@endif
@foreach($display as $index => $display_column)
@if($row[$display_column] != '')
{{ $row[$display_column] }}
@if($index < count($display) - 1)
|
@endif
@endif
@endforeach
@endforeach
@endif
@endsection