@extends('admin.layouts.master') @section('title', __('Bill Payment Request')) @section('content')

@lang('Bill Payments')

@forelse ($bills as $bill) @empty @endforelse
{{ __('User') }} {{ __('Bill Type') }} {{ __('Bill') }} {{ __('Amount') }} {{ __('Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $bill->user->name }} {{ $bill->type }} {{ $bill->bill_type }} {{ $bill->amount }} {{ $bill->created_at }} @if($bill->status == 1) {{__('Accepted')}} @elseif($bill->status == 2) {{__('Rejected')}} @else {{__('Pending')}} @endif
@lang('No Data Found')
@endsection @section('script') @endsection