@extends('front.layout.layout') @section('title', 'My Payments') @section('content')
| Business Name | Payment Amount | Payment Proof | Payment Method | Status | Created At |
|---|---|---|---|---|---|
| {{ $item->name }} | {{ $item->transactions->amount }} |
|
{{ ucfirst($item->transactions->type) }} | @switch($item->status) @case(0) Waiting For Admin Proposal @break @case(-1) Rejected @break @case(1) Approved @break @default No Status @endswitch | {{ $item->created_at->format('Y-m-d H:i:s') }} |