@extends('app') @section('title')Contacts @stop @section('content')

Contacts

@if(count($contacts) > 10) @endif @foreach($contacts as $contact) @endforeach
Email User Name Phone Notes Created date Actions
Email User Name Phone Notes Created date Actions
{{ $contact->user_email }} {{ $contact->user_name }} {{ $contact->user_phone }} {{ $contact->desc }} {{ $contact->created_at }} @if($contact->read == 1) @else @endif   
@endsection