diff --git a/app/Http/Controllers/Finance/BuybackController.php b/app/Http/Controllers/Finance/BuybackController.php new file mode 100644 index 0000000..ded6362 --- /dev/null +++ b/app/Http/Controllers/Finance/BuybackController.php @@ -0,0 +1,19 @@ + +
+ + + + + + @include('layouts.darkmode') +
+ + +@endsection + +@section('content-navigation') +
+ +
+@endsection + +@section('content') +
+
+
+
Customers
+
+
345k
+

Feb 1 - Apr 1, United States

+

18.2% increase since last month

+
+
+
+
+
+
Revenue
+
+
$2.4k
+

Feb 1 - Apr 1, United States

+

4.6% increase since last month

+
+
+
+
+
+
Purchases
+
+
43
+

Feb 1 - Apr 1, United States

+

2.6% decrease since last month

+
+
+
+
+
+
Traffic
+
+
64k
+

Feb 1 - Apr 1, United States

+

2.5% increase since last month

+
+
+
+
+
+
+
+
Latest transactions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OrderProductCustomerTotalDate
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
+
+ View all +
+
+
+
+
+
Traffic last 6 months
+
+
+
+
+
+
+ +
+
+
+
JWT Status
+
+
+ +

Issued At

+

+ {{ optional($authUser->user_jwt_issued_at)?->toDateTimeString() ?? 'N/A' }} +

+ + +

Expires At

+

+ {{ optional($authUser->user_jwt_expires_at)?->toDateTimeString() ?? 'N/A' }} +

+ + + +

Privileges Version

+

+ {{ $authUser->privileges_version ?? 1 }} +

+ +
+ +
+ + +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/buyback/process.blade.php b/resources/views/buyback/process.blade.php new file mode 100644 index 0000000..f306c9c --- /dev/null +++ b/resources/views/buyback/process.blade.php @@ -0,0 +1,213 @@ +@extends('layouts.dashb5') +@section('title', 'Alliance Services - Buyback') + +@section('upper-navbar') + +@endsection + +@section('content-navigation') +
+ +
+@endsection + +@section('content') +
+
+
+
Customers
+
+
345k
+

Feb 1 - Apr 1, United States

+

18.2% increase since last month

+
+
+
+
+
+
Revenue
+
+
$2.4k
+

Feb 1 - Apr 1, United States

+

4.6% increase since last month

+
+
+
+
+
+
Purchases
+
+
43
+

Feb 1 - Apr 1, United States

+

2.6% decrease since last month

+
+
+
+
+
+
Traffic
+
+
64k
+

Feb 1 - Apr 1, United States

+

2.5% increase since last month

+
+
+
+
+
+
+
+
Latest transactions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OrderProductCustomerTotalDate
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
17371705Volt Premium Bootstrap 5 Dashboardjohndoe@gmail.com€61.11Aug 31 2020View
17370540Pixel Pro Premium Bootstrap UI Kitjacob.monroe@company.com$153.11Aug 28 2020View
+
+ View all +
+
+
+
+
+
Traffic last 6 months
+
+
+
+
+
+
+ +
+
+
+
JWT Status
+
+
+ +

Issued At

+

+ {{ optional($authUser->user_jwt_issued_at)?->toDateTimeString() ?? 'N/A' }} +

+ + +

Expires At

+

+ {{ optional($authUser->user_jwt_expires_at)?->toDateTimeString() ?? 'N/A' }} +

+ + + +

Privileges Version

+

+ {{ $authUser->privileges_version ?? 1 }} +

+ +
+ +
+ + +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 85d63d0..307ad60 100644 --- a/routes/web.php +++ b/routes/web.php @@ -17,6 +17,10 @@ Route::get('/', function() { return view('auth.eve'); } }); + +Route::get('/buyback', [BuybackController::class, 'display'])->name('buyback'); +Route::post('/buyback/process', [BuybackController::class, 'process'])->name('buyback.process'); + //Route::get('/', [EveLoginController::class, 'showLogin'])->name('login'); Route::get('/login/eve', [EveLoginController::class, 'redirectToProvider'])->name('login.eve'); Route::get('/login/eve/callback', [EveLoginController::class, 'handleProviderCallback'])->name('login.eve.callback');