@extends('layouts.adminapp') @section('title') {{ __('lng.VehicleSetFee') }} - {{ __('lng.SetFeesMonthly') }} @endsection @section('active_student_vehicle', 'active') @section('open_student_vehicle', 'open') @section('active_vehicle_set_fee', 'active') @section('content')

{{ __('lng.SetFeesMonthly') }}

{{ $StudentVehicle->Student->name ?? '' }}
{{ __('lng.Back') }}

{{ $StudentVehicle->Student->place ?? '' }} {{ $StudentVehicle->Student->mobile ?? '' }} {{ $StudentVehicle->Student->Class->title ?? '' }}

{{ __('lng.Vehicle') }}

{{ $StudentVehicle->Vehicle->name ?? '' }}

{{ __('lng.Route') }}

{{ $StudentVehicle->Route->title ?? '' }}

@csrf
{{ __('lng.SetFeesMonthly') }}
@error('batch_year')
{{ $message }}
@enderror
@error('month')
{{ $message }}
@enderror
@error('amount')
{{ $message }}
@enderror
@error('additional_charge')
{{ $message }}
@enderror
@error('narration')
{{ $message }}
@enderror
{{ __('lng.MonthlyFeeDetails') }}
@php $si=0; @endphp @foreach ($VehicleSetFees as $VehicleSetFee) @php $month = date("F-Y",strtotime($VehicleSetFee->month));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.BatchYear') }} {{ __('lng.Month') }} {{ __('lng.Amount') }} {{ __('lng.AdditionalCharge') }} {{ __('lng.TotalAmount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $VehicleSetFee->batch_year }} {{ $month }} @currency($VehicleSetFee->amount) @currency($VehicleSetFee->additional_charge) @currency($VehicleSetFee->total_amount)
@csrf @method('delete')

{{ __('lng.Showing') }} {{ $VehicleSetFees->count() }} {{ __('lng.Items') }}

@endsection