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

Search Contacts Table

@foreach($contacts as $contact) @endforeach
# Name Company Email Phone Message Language Status Actions
{{ $contact->id }} {{ $contact->fullname }} {{ $contact->company }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->message }} {{ $contact->english == 1 ? "Español" : "Inglés" }} {{ $contact->status == 1 ? "Listo" : "Pendiente" }}
@csrf @method('PUT')
@csrf @method('DELETE')
{{ $contacts->links() }}
@endsection