@extends('layouts.app') @push('page_style') @endpush @section('content')

Payment History

@forelse($history as $item) @empty

No data!!

@endforelse
ID Price Payment Date
{{ $item->id }} {{ $item->price }} {{ \Carbon\Carbon::parse($item->created_date)->format('Y-m-d') }}
@endsection