@extends('admin.layouts.main') @php $page_name = 'Unit'; @endphp @section('content')

{{ $edit ? 'Edit' : 'Add' }} {{ $page_name }}

@csrf @if ($edit) @endif
{{ $page_name }} List
@foreach ($units as $key => $unit) @endforeach
# Unit Full Name Unit Name Actions
{{ $key + 1 }} {{ $unit->full_name }} {{ $unit->name }} Edit
@if (count($units) > 0)
{{ $units->links() }}
@else

Data not found!

@endif
@include('components.alertmodal', [ 'modal_id' => 'deleteUnitModal', 'form_id' => 'deleteUnitForm', 'action' => route('admin.deleteunit'), 'modal_title' => 'Alert!', 'input_id' => 'deleteUnitId', 'modal_mess' => 'Are you sure you want to delete this Unit?', 'button_type' => 'submit', 'button_id' => 'confirmDeleteUnitButton', ]) @endsection @section('script') @endsection