123456789101112131415161718192021222324 |
- @extends('layout')
- @section('title', "Form Data")
- @section('content')
- <h2>Form Data</h2>
- <table>
- <tr>
- <th></th>
- <th>name</th>
- <th>lastname</th>
- <th>city</th>
- <th>email</th>
- </tr>
- @foreach($data as $id)
- <tr>
- <td></td>
- @foreach($id as $forms => $item)
- <td>{{$item}}</td>
- @endforeach
- </tr>
- @endforeach
- </table>
- @endsection
|