123456789101112131415161718 |
- @extends ('layout')
- @section ('content')
- <table> <tbody>
- @foreach ($table as $row )
- <tr>
- @foreach ($row as $value )
- <td> {{ $value }} </td>
- @endforeach
- </tr>
- @endforeach
- </tbody></table>
- @endsection
- @section ('title')
- welcome title
- @endsection
|