@extends('layouts/contentLayoutMaster') @section('title', 'IBL Fixed Pricing') @section('vendor-style') {{-- vendor css files --}} @endsection @section('content')

Add IBL Fixed Price

{{-- --}}
@include('content._partials._sections.ibl_fixed_price_tabs')
{{--
@include('content._partials._sections.base_price_filter')
--}}
@include('content._partials._sections.add_ibl_fixed_price_form')
@php $count = count($prices); @endphp @foreach ($prices as $key => $price) @php if($price->ownership) { if($price->ownership == 'ffl') { $ownership = 'FFL'; } else if($price->ownership == 'vendor') { $ownership = 'Vendor'; } else { $ownership = ''; } } else { $ownership = ''; } @endphp @endforeach
No. Vendor Tanker (Ltrs) Ownership Type Price Wef Remarks Action
{{ $key + 1 }} {{ $price->vendor_id ? $price->vendor->name : '' }} {{ $price->container_id ? $price->container->capacity : '' }}{!! $ownership !!} {{ $price->rate_frequency ? $price->rate_frequency : '' }} {{ $price->price ? $price->price : '' }} {{ $price->wef ? $price->wef : '' }} {{ $price->initial_remarks ? $price->initial_remarks : 'None' }}
No Data Found
{{--
--}}
@endsection @section('vendor-script') @endsection