@extends('admin.layout.base') @section('title', 'Customer Care') @section('content')

Customer Care

Add Customer Care
@foreach($customers as $index => $customer) @endforeach
@lang('admin.member.id') @lang('admin.member.full_name') @lang('admin.member.email') @lang('admin.member.mobile') Status @lang('admin.member.action')
{{ $index + 1 }} {{ $customer->name }} {{ $customer->email }} {{ $customer->dial_code }} {{ $customer->mobile }} @if($customer->status ==1) Active @else Inactive @endif
@lang('admin.member.id') @lang('admin.member.full_name') @lang('admin.member.email') @lang('admin.member.mobile') Status @lang('admin.member.action')
@endsection