multiply_table.blade.php 269 B

123456789101112131415161718
  1. @extends ('layout')
  2. @section ('content')
  3. <table> <tbody>
  4. @foreach ($table as $row )
  5. <tr>
  6. @foreach ($row as $value )
  7. <td> {{ $value }} </td>
  8. @endforeach
  9. </tr>
  10. @endforeach
  11. </tbody></table>
  12. @endsection
  13. @section ('title')
  14. welcome title
  15. @endsection