@extends('admin.layouts.master') @section('title', 'List of Contacts') @section('content')

Contacts List

Contacts List
@foreach ($contacts as $contact) @endforeach
Full Name Email Phone Number Company Name Status Action
{{ $contact->full_name }} {{ $contact->email }} {{ $contact->phone_no }} {{ $contact->company_name }} @if ($contact->status == 'answered') {{ $contact->status }} @else {{ $contact->status }} @endif
@endsection @section('js')