@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")
{{__("item-types")}}
{{__("all-item-types")}}
{{__("Dashboard")}}
{{__("item-types")}}
@endsection @section("content")
@if(isPermissionsAllowed("create-item-type"))
{{__('create-item-type')}}
@csrf
{{__("Export As Excel")}}
@endif
@if(isPermissionsAllowed("edit-item-type")) @endif @foreach($types as $type) @endforeach
#
{{__("type-name")}}
{{__("control")}}
{{$serial_number++}}
{{$type->type}}
id)}}" class="control-link edit">
@if($type->delete == 1)
id)}}" method="post" id="delete{{$type->id}}" style="display: none" data-swal-title="{{__("delete-item-type")}}" data-swal-text="{{__("are-you-sure-to-delete-this-item-type?")}}" data-yes="{{__("yes")}}" data-no="{{__("no")}}" data-success-msg="{{__("the-item-type-has-been-deleted-successfully")}}">@csrf @method("delete")
@endif
@endsection