123456789101112131415161718192021222324 |
- @extends('layouts.app')
- @section('title-block')
- Все сообщения
- @endsection
- @section('content')
- <h1>Все сообщение</h1>
- @foreach($data as $el)
- <div class=alert alert-info>
- <h3>{{$el -> subject }} </h3>
- <h4>{{ $el -> email}}</h4>
- <p><small>{{$el->created_at}}</small></p>
- <a href="#"><button class ="btn btn-warning">Подробнее</button></a>
- </div>
- @endforeach
- @endsection
|