@extends('layouts.master') @section('title', pageTitle('Pricing')) @section('content') @include('sections.breadcrumb')
Entries
@if (isset($prices) && count($prices) > 0) @foreach ($prices as $price) @endforeach @else @endif
Vehicle Origin Destination Price Action
{{ $price->vehicle->vehicleMake->name . " " . $price->vehicle->vehicleModel->name . " " . $price->vehicle->year }} {{ $price->originState->name . " . " . $price->originLocation->name . " . " . $price->originTerminal->name }} {{ $price->destState->name . " . " . $price->destLocation->name . " . " . $price->destTerminal->name }} {{ moneyFormat($price->price) }} Edit Price {{-- @if($vehicleMake->vehicleModels()->count() == 0) / Delete @endif --}}
No records for pricing at the moment!
@if (isset($prices))
Showing {{ ($prices->currentpage() -1 ) * $prices->perpage() + 1 }} to {{ $prices->currentpage() * $prices->perpage() }} of {{ $prices->total() }} entries
{!! $prices->render() !!}
@endif
@stop @section('page-scripts') @stop