1234567891011121314151617181920212223242526272829303132 |
- @extends('_LAYOUT_')
- @section('content-inner')
- <div class="mr-3 pb-3">
- <h4 class='my-3 d-flex'>
- <div>_NAME_</div>
- <div class="ml-auto">
- <!-- _ADD_NEW_LINK_ -->
- </div>
- </h4>
- <div class="table-responsive p-0 bg-white border">
- <table class="table table-hover text-nowrap">
- <thead>
- <tr>
- <!-- __SCAFFOLD_THS__ -->
- </tr>
- </thead>
- <tbody>
- @foreach($subRecords as $subRecord)
- <tr>
- <!-- __SCAFFOLD_TDS__ -->
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- @endsection
|