@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') View Contacts @endsection @section('modal') @foreach($contacts as $contact) @endforeach @endsection @section('contentheader_title') View Contacts @endsection @section('main-content')

We have {{$total}} Contacts

@foreach($contacts as $contact) @endforeach
Name Organization Phone Email Address City Zip View Notes
{{ $contact->name}} {{ $contact->organization}} {{ $contact->tel}} {{ $contact->email}} {{ $contact->add}} {{ $contact->city}} {{ $contact->zip}}
Name Organization Phone Email Address City Zip View Notes
@endsection @section('page-scripts') {{ asset('/plugins/jQuery/jQuery-2.1.4.min.js') }} @endsection