12345678910111213141516171819202122232425262728 |
- @extends('layouts.pro-logged-in')
- @section('content')
- <h3 class="d-flex my-3 px-3 stag-heading stag-heading-index">
- <div>_NAME_: List</div>
- <div class="ml-auto">
- <!-- _ADD_NEW_LINK_ -->
- </div>
- </h3>
- <div class="table-responsive p-0 bg-white border stag-table stag-table-index">
- <table class="table table-hover text-nowrap table-striped">
- <thead>
- <tr>
- <!-- __SCAFFOLD_THS__ -->
- </tr>
- </thead>
- <tbody>
- @foreach($records as $record)
- <tr>
- <!-- __SCAFFOLD_TDS__ -->
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- @endsection
|