@extends('layouts.admin.master') @section('title', 'Customer Type') @section('content')
Customer Type
@csrf
@error('customer_type_name')
{{ $message }}
@enderror
@error('customer_type_code')
{{ $message }}
@enderror
@if (count($customerTypes) != 0) @php $count = 1; @endphp @foreach ($customerTypes as $customerType) @if ($customerType['is_discontinued'] == 0) @elseif ($customerType['is_discontinued'] == 1) @endif @php $count++; @endphp @endforeach @endif
No Cutomer Type Name Other Name Customer Type Code Discontinued Edit Delete
{{ $count }} {{ $customerType['customer_type_name'] }} {{ $customerType['other_name'] }} {{ $customerType['customer_type_code'] }}
@endsection