@extends('backpack::layout') @section('header')

{{ $name }}

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