welcome.blade.php 344 B

1234567891011121314151617
  1. @extends ('layout')
  2. @section ('content')
  3. <a href='{{ route('multiply', ['width' => 5, 'height' => 5])}}'>пифагор</a>
  4. <table> <tbody>
  5. @foreach ($userList as $user )
  6. <tr><td>{{$user['id'] }} </td>
  7. <td>{{$user['login'] }} </td>
  8. </tr>
  9. @endforeach
  10. </tbody></table>
  11. @endsection
  12. @section ('title')
  13. welcome title
  14. @endsection