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

Contacts

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

@foreach($contacts as $contact) @if ($contact->start_project == 0 && $contact->work_with_us == 0) @endif @endforeach
# Name Company Email Phone Message Language Status Actions
{{ $contact->id }} {{ $contact->fullname }} {{ $contact->company }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->message }} {{ $contact->english == 1 ? "Eng" : "Spa" }} {{ $contact->status == 1 ? "Ready" : "Pending" }} @if(Request::path() == "contact")
@csrf @method('PUT')
@csrf @method('DELETE')
@else
@csrf @method('PUT')
@csrf @method('DELETE')
@endif
{{ $contacts->links() }}
@endsection