{{-- This is all Customer Page --}} @extends('layouts.vertical', ['title' => 'All identifications']) @push('head-script') @endpush @push('head-scriptTwo') @endpush @section('content')

Identification Types

{{-- @can('add-customer') --}} {{-- --}} {{-- @endcan --}}
@if (session('success')) @endif @php $i = 1; @endphp @forelse ($ids as $identification) @empty @endforelse
No. Name Status Options
{{ $i++ }} {{ $identification->name }} @if ($identification->status == 1) Active @else Inactive @endif {{-- Edit Button --}} {{-- Delete Button --}}
@csrf @method('DELETE')
No Identifications available.
@include('identifications.add-identification') @endsection