messages.blade.php 410 B

123456789101112131415161718192021222324
  1. @extends('layouts.app')
  2. @section('title-block')
  3. Все сообщения
  4. @endsection
  5. @section('content')
  6. <h1>Все сообщение</h1>
  7. @foreach($data as $el)
  8. <div class=alert alert-info>
  9. <h3>{{$el -> subject }} </h3>
  10. <h4>{{ $el -> email}}</h4>
  11. <p><small>{{$el->created_at}}</small></p>
  12. <a href="#"><button class ="btn btn-warning">Подробнее</button></a>
  13. </div>
  14. @endforeach
  15. @endsection