@extends('layouts.admin.app') @section('content')
Contact List

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@foreach($contactno as $contact) @if($contact->status==0) @elseif($contact->status==1) @else @endif @endforeach
S.No Contact Contact Type Email address Address Disable
{{ $contact->id }} {{ $contact->contact_no }}Whatsapp NumberTollFree NumberLocal Number{{ $contact->email_address }} is_disable =='0' ? 'checked' : '' }}> edit
@include('layouts.admin.footer')
@endsection