@extends('backend.admin-master') @section('site-title') {{__('All Shipping')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('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}} {{site_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