@extends('backend.admin-master') @section('site-title') {{__('All Shipping')}} @endsection @section('style') @endsection @section('content')

{{__('All Shipping')}}

@php $b=0; @endphp @foreach($all_shipping as $key => $shipping)
@foreach($shipping as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Cost')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{amount_with_currency_symbol($data->cost)}} @if('publish' == $data->status) {{ucfirst(__($data->status))}} @else {{ucfirst(__($data->status))}} @endif @if($data->is_default == '1')
{{__('Default Shipping')}}
@else
@csrf
@endif
@php $b++; @endphp @endforeach

{{__('Add New Shipping')}}

@csrf
@endsection @section('script') @endsection