@extends('layouts.app') @section('content')

{{trans('lang.contact_details_plural')}}|{{trans('lang.contact_details_desc')}}

@include('flash::message')
@if(count($contact_details)>0) @foreach ($contact_details as $key=>$contact) @endforeach @else @endif
ID Phone Number Email Id Country Store Name Status Action
{{ $contact->id }} {{ $contact->phone_number }} {{ $contact->email_id }} @if(count($country)>0) @foreach ($country as $key=>$country1) @if($contact->country==$country1['country_code']) {{$country1['country_name']}} @endif @endforeach @endif {{ $contact->name }} @if($contact->active=="1") Active @else InActive @endif
No record found!
{{$contact_details->links()}}
@endsection