@extends('layouts.app') @extends('layouts.navbar') @section('content')

{{ __("Vehicle Branding History") }}

@forelse ($brandingHistories as $brandingHistory) @empty @endforelse
{{ __('Branding Date') }} {{ __('Branding Amt') }} {{ __('Subscription Date') }} {{ __('Subscription Amt') }}
{{ \Carbon\Carbon::parse($brandingHistory->branding_date, "Asia/Kolkata")->toDayDateTimeString() }} Rs.{{ number_format($brandingHistory->branding_amount,2,'.','') }} {{ \Carbon\Carbon::parse($brandingHistory->branding_date, "Asia/Kolkata")->toDayDateTimeString() }} Rs.{{ number_format($brandingHistory->subscription_amount,2,'.','') }}
{{ __('Branding History Unavailable!') }}
{{ $brandingHistories->withQueryString()->render('pagination::bootstrap-5') }}

@endsection @extends('layouts.footer')