@extends('header.header') @section('content')
{{__('Shipment Weight Table')}}

@foreach($Weights as $Weight) @endforeach
{{__("ID")}} {{__("Weight From")}} {{__("Weight To")}} {{__("Weight Type")}} {{__("Control")}}
{{$Weight->id}} {{$Weight->from}} {{$Weight->to}} {{$Weight->type}}
id)}}">
id)}}" method="post" id="delete{{$Weight->id}}" style="display: none" data-swal-title="{{__("Delete Weight")}}" data-swal-text="{{__("Are You Sure To Delete This Weight?")}}" data-yes="{{__("Yes")}}" data-no="{{__("No")}}" data-success-msg="{{__("the Weight has been deleted successfully")}}">@csrf @method("delete")
{{$Weights->links()}}
@endsection