data.blade.php 225 B

12345678910111213141516
  1. @extends("layouts.app")
  2. @section("content")
  3. <table>
  4. <tr>
  5. <th>Email</th>
  6. <th>Message</th>
  7. </tr>
  8. @foreach ($rows as $row)
  9. <tr>
  10. <td>{{$row->email}}</td>
  11. <td>{{$row->message}}</td>
  12. </tr>
  13. @endforeach
  14. </table>
  15. @endsection