@extends('admin.layouts.dashboard') @section('title', 'All Shippings') @section('content')

Shippings

Add
@if($shippings->count() > 0) @foreach($shippings as $key => $ship) @endforeach @else

No shipping Found

@endif
# Pincode Price Shipping Free Has COD days City Status Action
{{ $shippings->firstItem() + $key }} {{ $ship->pincode }} {{ $ship->price }} {{ $ship->free_shipping_threshold }} {{ $ship->is_cash_on_delivery ? 'Yes' : 'No' }} {{ $ship->delivery_days }} {{ $ship->city }} ( {{ $ship->state }}) @if($ship->status) @php $statusBtn = '' @endphp Active @else @php $statusBtn = '' @endphp Deactive @endif {!! $statusBtn !!}
{!! $shippings->links() !!}
@endsection