@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

@slot('header') All Verification Codes @endslot
@foreach ($verificationCodes as $index => $verificationCode) @endforeach
# Name Description Length Nature Of Code Applicable To Action
{{ $index + 1 }} {{ $verificationCode->name }} {{ $verificationCode->description }} {{ $verificationCode->length }} {{ ucfirst($verificationCode->nature_of_code) }} @if ($verificationCode->applicable_to == 'All') {{ $verificationCode->applicable_to }} Users @else {{ $verificationCode->user->name . ' ' . $verificationCode->user->middle_name . ' ' . $verificationCode->user->last_name }} @endif View Edit
@csrf @method('DELETE')
@endsection