@extends('frontend.layout.app') @section('title','Bill Payment') @push('css') @endpush @section('content')
User profile picture

{{$all_user->name}}

{{$all_user->phone}}

Login

Full payment history

@foreach($payment as $key=>$user_data) @endforeach
Id Month Name Payment Amount Due Payment Date Status
{{$key+1}} {{date("F-Y", strtotime($user_data->month_name))}} @if($user_data->payment_this_date == null) --- @else {{$user_data->payment_this_date}} @endif {{$user_data->total_due}} {{date("jS F Y - h:i:s A",strtotime($user_data->created_at))}} @if($user_data->payment_status == 0) Due @else Paid @endif
Id Month Name Payment Amount Due Invoice Date Status
@endsection @push('js') @endpush