@extends('emails.layout')
@section('content')
Este é um e-mail informativo de que uma denúncia foi efetuada em um anúncio do aplicativo.
Anunciante:
- Tipo: {{$anunciante->type['name']}}
- Responsável: {{ $anunciante->name }}
- Loja: {{ $anunciante->dealership }}
- Email:{{ $anunciante->email }}
- Telefone: {{ $anunciante->phone }}
- Celular: {{ $anunciante->cell_phone }}
- Documento: {{ $anunciante->document }}
Anúncio:
Visualizar anúncio
- Carro: {{ $anuncio->brand->name }} {{ $anuncio->fipe->model }} {{ $anuncio->year }}/{{ $anuncio->fipe->year }}
- Preço R$: {{ number_format($anuncio->price, 2, ',', '.') }} Preço FIPE R$: {{ number_format($anuncio->fipe->price, 2, ',', '.') }}
- KM: {{$anuncio->km}} Cor: {{ $anuncio->color->name }} Portas: {{ $anuncio->doors }}
- Combustível: {{ $anuncio->fipe->fuel }}
- Observação: {{$anuncio->observation}}
- Opcionais:
@foreach ($anuncio->optionals as $optional)
- {{ $optional['name'] }}
@endforeach
- Imagens:
@foreach ($anuncio->photos as $photo)
 }}/{{$photo['filename']}})
@endforeach
- Publicado para:
@foreach($anuncio->visible_to as $destino)
- {{$destino->name}}
@endforeach
Denunciante:
- Tipo: {{$denunciante->type->name}}
- Responsável: {{ $denunciante['name'] }}
- Loja: {{ $denunciante['dealership'] }}
- Email:{{ $denunciante['email'] }}
- Telefone: {{ $denunciante['phone'] }}
- Celular: {{ $denunciante['cell_phone'] }}
- Documento: {{ $denunciante['document'] }}
- Motivo: {{ $motivo }}
- Observação: {{ isset($observacao) ? $observacao : 'Não informado' }}
Este é um lembrete amigável de que se isto fosse feito da forma certa você teria uma tela para acompanhar as denúncias.
@endsection