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

{{__("production-lines")}}

{{__("all-production-lines")}}

@endsection @section("content")
@if(isPermissionsAllowed("create-production-lines")) @endif
@csrf {{__("Export As Excel")}}
@if(isPermissionsAllowed("edit-production-line","delete-production-line")) @endif @foreach($productionLines as $productionLine) @if(isPermissionsAllowed("edit-production-line","delete-production-line")) @endif @endforeach
# {{__("name")}}{{__("control")}}
{{$serial_number++}} {{$productionLine->name}} @if(isPermissionsAllowed("edit-production-line")) id)}}" class="control-link edit"> @endif @if(isPermissionsAllowed("delete-production-line")) @if($productionLine->delete == 1)
id)}}" method="post" id="delete{{$productionLine->id}}" style="display: none" data-swal-title="{{__("delete-production-line")}}" data-swal-text="{{__("are-you-sure-to-delete-this-production-line?")}}" data-yes="{{__("yes")}}" data-no="{{__("no")}}" data-success-msg="{{__("the-production-line-has-been-deleted-successfully")}}">@csrf @method("delete")
@endif @endif
@endsection