@extends('layouts.app') @section('title', 'Payment') @section('content')

Payment Management

@include('common.alerts')
@include('masterfiles.components.add_payment_condition')
@foreach ($payments as $pay) @endforeach
# Type Trip Min KM Max KM Min Weight Max Weight Driver Amount Helper Amount Actions
{{ $loop->iteration }} {{ $pay->type }} {{ $pay->trip }} {{ $pay->km_min }} {{ $pay->km_max }} {{ $pay->weight_min }} {{ $pay->weight_max }} {{ $pay->driver_amount }} {{ $pay->helper_amount }}

@include('masterfiles.components.edit_paymentcon')
{{ $payments->onEachSide(1)->links('pagination::bootstrap-5') }}
@endsection