@extends('frontend.app') @section('content')
Back to Dashboard

Pay Your Bill

*Below are the details for your Bill.

{{-- @foreach ($currentBills as $cb) --}} {{-- @if((!($cb && $cb->orderDetails && $cb->orderDetails->payment_status == 'paid')) && $cb) --}} @if($cb) @endif {{-- @endforeach --}}
Bill No. Due Date Total Bill Amount Total Invoice Amount Amount to be Paid Download
{{ $cb->bill_number }} {{ date('d-m-Y', strtotime($cb->due_date)) }} {{ $cb->total_bil_amount }} /- {{ $cb->total_invoice_amount }} /-
@if ($cb) @if (!($user->eBill && $user->eBill->is_opted_ebill == 1))
@endif {{-- Pay your Bill --}} @endif
{{-- @if((!($cb && $cb->orderDetails && $cb->orderDetails->payment_status == 'paid')) && $cb && $cb->balance() > 0) --}} @if($cb && $cb->balance() > 0)

Please select payment option.

@if ($paymentChannels) @foreach ($paymentChannels as $paymentChannel)

@endforeach

{!! $errors->first('payment_channel_id', '') !!}

@endif
@endif @if (isset($errorMessage) && $errorMessage)

{{ $errorMessage }}

@endif
@endsection @section('styles') @endsection @section('scripts') @parent @endsection