@extends('backpack::layout')
@section('header')
@endsection
@section('content')
@if( isset($no_data) && $no_data == true)
No data in the table!
@else
@foreach($thead as $item)
{{ $item }}
|
@endforeach
@foreach($tbody as $row)
@foreach($row as $cell)
{{ $cell }}
|
@endforeach
@endforeach
@endif
@endsection