@extends('layouts.app') @section('content')

Contacts from landing pages

{{-- @if(Request::path() == "contact") Papelera @else Activos @endif --}}

@foreach($contacts as $contact) @endforeach
# Name Company Email Phone Message Language Landing Date Actions
{{ $contact->id }} {{ $contact->fullName }} {{ $contact->company }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->message }} {{ $contact->source }} {{ date('d-M-y', strtotime($contact->created_at)) }}
@csrf @method('DELETE')
{{--
{{ $contacts->links() }}
--}}
@endsection