@extends('layouts.app') @section('content')

Pricing

Add New Price
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($pricings as $pricing) @endforeach
# From Weight (KGs) To Weight (KGs) Price (INR) Additional Weight (KGs) Additional Price (INR) Consignment Type Action
{{ $loop->iteration }} {{ $pricing->from_weight_kgs }} {{ $pricing->to_weight_kgs }} {{ $pricing->price }} {{ $pricing->addl_weight }} {{ $pricing->addl_price }} {{ $pricing->consg_type }}
Edit
{!! $pricings->links() !!} @endsection