diff --git a/resources/assets/vue/components/wallets/elements/CustomerTransactionPreciseSectionComponent.vue b/resources/assets/vue/components/wallets/elements/CustomerTransactionPreciseSectionComponent.vue new file mode 100644 index 00000000..85868a2b --- /dev/null +++ b/resources/assets/vue/components/wallets/elements/CustomerTransactionPreciseSectionComponent.vue @@ -0,0 +1,174 @@ + + diff --git a/resources/views/pages/wallet/precise.blade.php b/resources/views/pages/wallet/precise.blade.php new file mode 100644 index 00000000..b0cd7af4 --- /dev/null +++ b/resources/views/pages/wallet/precise.blade.php @@ -0,0 +1,10 @@ + +@extends('layouts.base_portal') +@section('inner_content') +
+
+ +
+
+@endsection + diff --git a/routes/web.php b/routes/web.php index a9e51a50..e2357c00 100644 --- a/routes/web.php +++ b/routes/web.php @@ -231,6 +231,11 @@ Route::get('/wallet/{marking}/details', function ($marking) { return view('pages.wallet.index', ['id' => $id]); })->name('wallet.details'); +Route::get('/wallet/{marking}/details-precise', function ($marking) { + $id = \App\Models\Company::where('reference', '=', $marking)->first()->id; + return view('pages.wallet.precise', ['id' => $id]); +})->name('wallet.details-precise'); + Route::get('/wallets', function () { return view('pages.wallet.wallets'); })->name('wallet.wallets');