@extends('listing.listing')
@section('table')
| Nombre |
Correo |
Teléfono |
Asunto |
Mensaje |
Fecha |
@if(Auth::user()->rol == 1)
|
@endif
@foreach ($suggestions as $suggestion)
| {{$suggestion->name}} |
{{$suggestion->email}} |
{{$suggestion->telefono}} |
{{$suggestion->asunto}} |
{{$suggestion->message}} |
{{$suggestion->created_at}} |
@if(Auth::user()->rol == 1)
@if(Auth::user()->rol == 1)
@if($deleted)
Reactivar |
@else
Archivar |
@endif
@endif
@endif
@endforeach
|
@if(Auth::user()->rol == 1)
@if($deleted)
Ver activos
@else
Ver archivados
@endif
@endif
|
@endsection