12345678910111213141516171819202122232425 |
- @extends('layout')
- @section('title', "Окно админимтратора")
- @section('content')
- <table style="background-color: #e6e6f2; border-spacing: 0px; width: 60%">
- <tr style="background-color: #b7a7c2">
- <th style="border: 2px solid black">Name</th>
- <th style="border: 2px solid black">Lastname</th>
- <th style="border: 2px solid black">Age</th>
- <th style="border: 2px solid black">Mail</th>
- <th style="border: 2px solid black">City</th>
- </tr>
- @foreach ($data as $id=>$item)
- <tr>
- <td style="border: 2px solid black">{{$item->name}}</td>
- <td style="border: 2px solid black">{{$item->lastname}}</td>
- <td style="border: 2px solid black">{{$item->age}}</td>
- <td style="border: 2px solid black">{{$item->email}}</td>
- <td style="border: 2px solid black">{{$item->city}}</td>
- </tr>
- @endforeach
- <table>
- @endsection
|