@extends('layout.layout')
@section('title')
Mensagens
@endsection
@section('breadcrumb')
- Home
- Mensagens
@endsection
@section('content')
@if(!\Auth::user()->isRevenda())
Cliente |
@endif
Data e Hora |
Remetente |
E-mail |
Telefone |
Anuncio |
Ações |
@if(count($mensagens))
@foreach($mensagens as $men)
@if(!\Auth::user()->isRevenda())
{{$men->cliente->nome}} |
@endif
{{date('d/m/Y H:i:s', strtotime($men->created_at))}} |
{{$men->remetente}} |
{{$men->email}} |
{{$men->telefone}} |
{{ isset($men->anuncio) ? $men->anuncio->titulo : '' }} |
|
@endforeach
@else
Não há mensagens
|
@endif
@endsection
@section('modals')
Mensagem recebida em
Enviada por
E-mail
Telefone/Celular
Interessado no anúncio
@endsection
@section('javascript')
@endsection