@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Classifications")}}

{{__("All Classifications")}}

@endsection @section("content") @include("includes.dialog")
@foreach($classifications as $classification) @endforeach
{{__("ID")}} {{__("Name")}} {{__("Activation")}} {{__("Type")}} {{__("View in")}} {{__("Control")}}
{{$classification->id}} {{$classification->name}} {{$classification->status ?__("Active") : __("Non-Active")}} {{$classification->type}} {{$classification->view_in}} id)}}" class="control-link edit">
id)}}" method="post" id="delete{{$classification->id}}" style="display: none" data-swal-title="{{__("Delete Classification")}}" data-swal-text="{{__("Are You Sure To Delete This Classification?")}}" data-yes="{{__("Yes")}}" data-no="{{__("No")}}" data-success-msg="{{__("the Classification has been deleted succssfully")}}">@csrf @method("delete")
@endsection @section("scripts") @endsection