@extends('../layout/' . $layout) @section('subhead') Customer Profile @endsection @section('subcontent')

Customer Profile

Add Customer Profile
@if ($totalRecords > 0)
@php $no = 0; @endphp @foreach ($customerProfile as $profile) @endforeach
# PROFILE NAME STATUS ACTIONS
{{ ($page - 1) * 15 + ++$no }}
Customer image
{{ $profile->name ? $profile->name : '--' }}
isActive ? 'checked' : '' }} onclick="changeStatus({{ $profile->id }},{{ $profile->isActive }})" data-tw-target="#verified" id="switch">
@if ($totalRecords > 0)
Showing {{ $start }} to {{ $end }} of {{ $totalRecords }} entries
@endif
@else
noData

No Data Available

@endif @endsection @section('script') @endsection