1234567891011121314151617 |
- @extends ('layout')
- @section ('content')
- <a href='{{ route('multiply', ['width' => 5, 'height' => 5])}}'>пифагор</a>
- <table> <tbody>
- @foreach ($userList as $user )
- <tr><td>{{$user['id'] }} </td>
- <td>{{$user['login'] }} </td>
- </tr>
- @endforeach
- </tbody></table>
- @endsection
- @section ('title')
- welcome title
- @endsection
|