@extends($_ENV['admin-url'].'.layouts.main') @section('title') Contacts @stop @section('content')

Contacts
Listing

@include('includes.notification') @if($contacts->isEmpty())

Aucune demande de contact pour le moment.

@else
@foreach ($contacts as $o) @endforeach
# Langue Nom Informations Message Traité ? Créé le Actions
{{ $o->id }} {{ $o->language->name }} {{ $o->name }} {{ $o->email }}
{{ $o->phone!='' ? $o->phone : '-' }}
{{ \GeneralFunctions::cleancut($o->message, 50) }} @if($o->traite=='1') Oui @else Non @endif {{ $o->created_at }} - {{ $o->created_at->diffForHumans() }}
@endif @stop @section('scripts') @parent @stop