@include('flash::message')
ID |
Phone Number |
Email Id |
Country |
Store Name |
Status |
Action |
@if(count($contact_details)>0)
@foreach ($contact_details as $key=>$contact)
{{ $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
|
|
@endforeach
@else
No record found! |
@endif
{{$contact_details->links()}}
@endsection