@extends('layout.admin') @section('head') @extends('layout.header') @section('header_title', 'Customer') @endsection @section('content')

Customer

Customer Details

{{ csrf_field() }}
Enter a valid number (10 digits required)
@foreach ($customers as $item) @if ($item->Status == 1) @endif @endforeach
ID First Name Last Name Contact Number Address Email Comment Loyalty Points Status Actions
{{ $item->idCustomer }} {{ $item->Full_Name }} {{ $item->First_Name }} {{ $item->Contact_No }} {{ $item->Address }} {{ $item->email }} {{ $item->Comment }} {{ $item->Loyalty_Points }} @if ($item->Status) Active @else Block @endif Loyalty
@foreach ($customers as $item) @if ($item->Status == 1 && $item->Loyalty == 1) @endif @endforeach
ID First Name Last Name Contact Number Address Email Comment Loyalty Points Status Actions
{{ $item->idCustomer }} {{ $item->Full_Name }} {{ $item->First_Name }} {{ $item->Contact_No }} {{ $item->Address }} {{ $item->email }} {{ $item->Comment }} {{ $item->Loyalty_Points }} @if ($item->Status) Active @else Block @endif Loyalty
@foreach ($customers as $item) @if ($item->Status == 0) @endif @endforeach
ID First Name Last Name Contact Number Address Email Comment Loyalty Points Status Block Fee Actions
{{ $item->idCustomer }} {{ $item->Full_Name }} {{ $item->First_Name }} {{ $item->Contact_No }} {{ $item->Address }} {{ $item->email }} {{ $item->Comment }} {{ $item->Loyalty_Points }} @if ($item->Status) Active @else Block @endif {{ $item->Block_Fee }} Loyalty
@endsection @section('script') @endsection