diff --git a/app/Classes/Modules/Currencies/ControllersLogic/History/ListCurrencyRateHistoryLogic.php b/app/Classes/Modules/Currencies/ControllersLogic/History/ListCurrencyRateHistoryLogic.php
new file mode 100644
index 00000000..f1fb4f10
--- /dev/null
+++ b/app/Classes/Modules/Currencies/ControllersLogic/History/ListCurrencyRateHistoryLogic.php
@@ -0,0 +1,78 @@
+ 'Retrieved Currency Rate History',
+ 'message' => 'You have successfully retrieved a list of Currency Rate History'
+ ];
+ }
+
+ /** @var CanListRates */
+ private $canListRates;
+
+ /** @var ListsRateLogs */
+ private $listsRateLogs;
+
+ /** @var FetchesRate */
+ private $fetchesRate;
+
+ /**
+ * ListRatesLogic constructor.
+ * @param CanListRates $canListRates
+ * @param ListsRates $listsRates
+ */
+ public function __construct(CanListRates $canListRates, ListsRateLogs $listsRateLogs, FetchesRate $fetchesRate)
+ {
+ $this->canListRates = $canListRates;
+ $this->listsRateLogs = $listsRateLogs;
+ $this->fetchesRate = $fetchesRate;
+ }
+
+
+ /**
+ * @param Request $request
+ * @return JsonResponse
+ * @throws ErrorException
+ */
+ public function logic(Request $request): JsonResponse
+ {
+ //$this->canListRates->passes();
+
+ $filterArray = json_decode($request->input('filters'));
+
+ $rate_filter['currency_id'] = $filterArray->currency_id;
+ $rate_filter['service_id'] = $filterArray->service_id;
+
+ $currency_rate = $this->fetchesRate->execute(
+ [
+ 'currency_id' => $filterArray->currency_id,
+ 'service_id' => $filterArray->service_id,
+ ]
+ )->first();
+
+ $query = CurrencyRateLog::where('currency_rate_id', $currency_rate->id)->get();
+
+ return $this->collectionResponse(CurrencyRateLogResource::collection($query));
+ }
+}
diff --git a/app/Classes/Modules/Currencies/Services/Rates/ListsRateLogs.php b/app/Classes/Modules/Currencies/Services/Rates/ListsRateLogs.php
new file mode 100644
index 00000000..d3cfa469
--- /dev/null
+++ b/app/Classes/Modules/Currencies/Services/Rates/ListsRateLogs.php
@@ -0,0 +1,33 @@
+repository = $repository;
+ }
+
+
+ /**
+ * @return Builder
+ */
+ function getRepository(): Builder
+ {
+ return $this->repository->newQuery();
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/Currencies/History/ListCurrencyRateHistory.php b/app/Http/Controllers/Currencies/History/ListCurrencyRateHistory.php
new file mode 100644
index 00000000..7e7db955
--- /dev/null
+++ b/app/Http/Controllers/Currencies/History/ListCurrencyRateHistory.php
@@ -0,0 +1,20 @@
+execute($request);
+ }
+
+}
\ No newline at end of file
diff --git a/app/Http/Resources/CurrencyRateLogResource.php b/app/Http/Resources/CurrencyRateLogResource.php
new file mode 100644
index 00000000..436d8359
--- /dev/null
+++ b/app/Http/Resources/CurrencyRateLogResource.php
@@ -0,0 +1,23 @@
+ $this->currency_rate_id,
+ 'rate' => $this->selling,
+ 'created_at' => $this->created_at->format('d-m-Y'),
+ ];
+ }
+}
diff --git a/resources/assets/vue/components/bookings/forms/ChooseCurrencyComponent.vue b/resources/assets/vue/components/bookings/forms/ChooseCurrencyComponent.vue
new file mode 100644
index 00000000..e670a450
--- /dev/null
+++ b/resources/assets/vue/components/bookings/forms/ChooseCurrencyComponent.vue
@@ -0,0 +1,118 @@
+
+ {{ rateHistory }} Nothing To Show Here