19 lines
359 B
PHP
19 lines
359 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class WalletController extends Controller
|
|
{
|
|
public function walletUser()
|
|
{
|
|
$wallet = User::with('wallet')->get();
|
|
// dd($wallet);
|
|
|
|
return Inertia::render('list-admin/payment/WalletUser', compact('wallet'));
|
|
}
|
|
}
|