@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content')
{{ $data['p_heading'] }}

{{ $data['p_description'] }}

@if(sizeof($data['customers']) > 0)
@foreach($data['customers'] as $customer) @endforeach
ID Name Email Group Confirmed Last Login Status Actions
{{ $customer->id }} {{----}}{{ $customer->first_name . ' ' . $customer->last_name }} {{ $customer->email }} {{ $customer->group->name }} @if($customer->confirmed == '1') Confirmed @else Not Confirmed @endif {{ $customer->created_at }} @if($customer->active == '1') Active @else In-active @endif
@method('DELETE') @csrf
@else Sorry!, no customers found. @endif
@stop