@extends('admin.layouts.app')
@section('css')
{{-- --}}
{{-- --}}
@stop
@section('content')
{{ $pageTitle }}
{{ Breadcrumbs::render('admin.contact.index') }}
@include('admin.partials.errors')
| First Name |
Last Name |
Email |
Contact Number |
Actions |
@foreach ($contacts as $key => $contact)
| {!! $contact->first_name !!} |
{!! $contact->last_name !!} |
{!! $contact->email !!} |
{!! $contact->contact_number !!} |
|
@endforeach
@stop
@section('footer-js')
@stop