From f2aff7518be55da0fd250e04a4bfc1bbbd5a3d0a Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Tue, 2 Aug 2022 14:36:09 -0400 Subject: data model, query and storage works, frontend display basic last report --- app/Console/Commands/updateRates.php | 79 + app/Console/Kernel.php | 1 + app/Models/Currency.php | 14 + app/Models/Rates.php | 23 + composer.json | 2 +- composer.lock | 2 +- .../2021_08_02_000000_create_rates_table.php | 65 + oldstorage/app/.gitignore | 3 + oldstorage/app/public/.gitignore | 2 + oldstorage/framework/.gitignore | 9 + oldstorage/framework/cache/.gitignore | 3 + oldstorage/framework/cache/data/.gitignore | 2 + oldstorage/framework/sessions/.gitignore | 2 + oldstorage/framework/testing/.gitignore | 2 + oldstorage/framework/views/.gitignore | 2 + oldstorage/logs/.gitignore | 2 + public/image/btc.png | Bin 0 -> 87786 bytes resources/views/welcome.blade.php | 117 +- routes/web.php | 20 +- storage/app/.gitignore | 3 - storage/app/public/.gitignore | 2 - storage/framework/.gitignore | 9 - storage/framework/cache/.gitignore | 3 - storage/framework/cache/data/.gitignore | 2 - storage/framework/sessions/.gitignore | 2 - .../6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN9 | 1 + .../bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy | 1 + storage/framework/testing/.gitignore | 2 - storage/framework/views/.gitignore | 2 - .../012a1d662de1d6e091232755fc22d6187f7576fe.php | 65 + .../95b5e2df885fbdfd1938572f632a4f072bbcedfc.php | 5 + .../e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php | 39 + storage/logs/.gitignore | 2 - storage/logs/laravel.log | 33193 +++++++++++++++++++ 34 files changed, 33560 insertions(+), 121 deletions(-) create mode 100644 app/Console/Commands/updateRates.php create mode 100644 app/Models/Currency.php create mode 100644 app/Models/Rates.php create mode 100644 database/migrations/2021_08_02_000000_create_rates_table.php create mode 100644 oldstorage/app/.gitignore create mode 100644 oldstorage/app/public/.gitignore create mode 100644 oldstorage/framework/.gitignore create mode 100644 oldstorage/framework/cache/.gitignore create mode 100644 oldstorage/framework/cache/data/.gitignore create mode 100644 oldstorage/framework/sessions/.gitignore create mode 100644 oldstorage/framework/testing/.gitignore create mode 100644 oldstorage/framework/views/.gitignore create mode 100644 oldstorage/logs/.gitignore create mode 100644 public/image/btc.png delete mode 100644 storage/app/.gitignore delete mode 100644 storage/app/public/.gitignore delete mode 100644 storage/framework/.gitignore delete mode 100644 storage/framework/cache/.gitignore delete mode 100644 storage/framework/cache/data/.gitignore delete mode 100644 storage/framework/sessions/.gitignore create mode 100644 storage/framework/sessions/6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN9 create mode 100644 storage/framework/sessions/bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy delete mode 100644 storage/framework/testing/.gitignore delete mode 100644 storage/framework/views/.gitignore create mode 100644 storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php create mode 100644 storage/framework/views/95b5e2df885fbdfd1938572f632a4f072bbcedfc.php create mode 100644 storage/framework/views/e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php delete mode 100644 storage/logs/.gitignore create mode 100644 storage/logs/laravel.log diff --git a/app/Console/Commands/updateRates.php b/app/Console/Commands/updateRates.php new file mode 100644 index 0000000..12830db --- /dev/null +++ b/app/Console/Commands/updateRates.php @@ -0,0 +1,79 @@ +get('https://api.coingecko.com/api/v3/exchange_rates', []); + + if($res->getStatusCode() != 200) { + echo "failed to make query to coingecko."; + } + + else { + + $parsed = json_decode($res->getBody(),true); + + if(array_key_exists('rates', $parsed)) { + + foreach($parsed['rates'] as $rate) { + + // grab our BTC object, since all results are relative to it. + $btc = Currency::Where('id', 1)->first(); + + // setup a Currency object if we don't have one already. + if(!$currency = Currency::where('unit', '=', $rate['unit'])->first()) { + $currency = new Currency(['name'=> $rate['name'], 'unit' => $rate['unit']]); + $currency->save(); + } + + // build rate. + $rateObj = new Rates; + $rateObj->value = $rate['value']; + $rateObj->currency_id = $currency->id; + $rateObj->relative_id = $btc->id; + $rateObj->save(); + } + } + + } + } +} diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index d8bc1d2..700279d 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -16,6 +16,7 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule) { // $schedule->command('inspire')->hourly(); + $schedule->command('rates:update')->everyTwoMinutes(); } /** diff --git a/app/Models/Currency.php b/app/Models/Currency.php new file mode 100644 index 0000000..f64bf15 --- /dev/null +++ b/app/Models/Currency.php @@ -0,0 +1,14 @@ +belongsTo(Currency::class, 'currency_id'); + } + public function relative() + { + return $this->belongsTo(Currency::class, 'relative_id'); + } +} diff --git a/composer.json b/composer.json index 2b0c115..66d8607 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "require": { "php": "^7.3|^8.0", "fruitcake/laravel-cors": "^2.0", - "guzzlehttp/guzzle": "^7.0.1", + "guzzlehttp/guzzle": "^7.4", "laravel/framework": "^8.75", "laravel/sanctum": "^2.11", "laravel/tinker": "^2.5" diff --git a/composer.lock b/composer.lock index 0fa1b08..ab2761c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c61ff82cbf0142a401a48a8161e1595a", + "content-hash": "121649067a741dafc71a6b5b372dba5f", "packages": [ { "name": "asm89/stack-cors", diff --git a/database/migrations/2021_08_02_000000_create_rates_table.php b/database/migrations/2021_08_02_000000_create_rates_table.php new file mode 100644 index 0000000..c6925d0 --- /dev/null +++ b/database/migrations/2021_08_02_000000_create_rates_table.php @@ -0,0 +1,65 @@ +id(); + $table->string('name'); + $table->string('unit'); + $table->string('description')->nullable(); + $table->timestamps(); + }); + + Schema::create('rates', function (Blueprint $table) { + $table->id(); + $table->unsignedBigInteger('currency_id'); + $table->foreign('currency_id')->references('id')->on('currency'); + $table->unsignedBigInteger('relative_id'); + $table->foreign('relative_id')->references('id')->on('currency'); + $table->float('value'); + $table->timestamps(); + }); + DB::table('currency')->insert( + array( + 'name' => 'Bitcoin', + 'unit' => 'BTC', + 'description' => 'Created by Satoshi' + ) + ); + DB::table('currency')->insert( + array( + 'name' => 'US Dollar', + 'unit' => '$', + 'description' => 'Destroyed by Breton Woods' + ) + ); + DB::table('rates')->insert( + array( + 'currency_id' => 1, + 'relative_id' => 2, + 'value' => 100000.00 + )); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('coins'); + Schema::dropIfExists('rates'); + } +} diff --git a/oldstorage/app/.gitignore b/oldstorage/app/.gitignore new file mode 100644 index 0000000..8f4803c --- /dev/null +++ b/oldstorage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.gitignore diff --git a/oldstorage/app/public/.gitignore b/oldstorage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/oldstorage/framework/.gitignore b/oldstorage/framework/.gitignore new file mode 100644 index 0000000..05c4471 --- /dev/null +++ b/oldstorage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/oldstorage/framework/cache/.gitignore b/oldstorage/framework/cache/.gitignore new file mode 100644 index 0000000..01e4a6c --- /dev/null +++ b/oldstorage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/oldstorage/framework/cache/data/.gitignore b/oldstorage/framework/cache/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/oldstorage/framework/sessions/.gitignore b/oldstorage/framework/sessions/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/oldstorage/framework/testing/.gitignore b/oldstorage/framework/testing/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/oldstorage/framework/views/.gitignore b/oldstorage/framework/views/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/oldstorage/logs/.gitignore b/oldstorage/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/oldstorage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/public/image/btc.png b/public/image/btc.png new file mode 100644 index 0000000..1d14bc6 Binary files /dev/null and b/public/image/btc.png differ diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index dd6a45d..f3b6f33 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -4,7 +4,10 @@ - Laravel + Bitcoin Price References + + + @@ -22,108 +25,40 @@
- @if (Route::has('login')) - - @endif -
- - - - - + Bitcoin Price Reference
- - -
+
- Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end. + Last Update: {{$rates[0]->updated_at}}
+ Current price reference:
-
-
- -
-
- - -
-
-
- Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. -
+ + + + + + + + + @foreach ($rates as $rate) + + + + + + + @endforeach + +
NameUnitDescriptionLast Rate (to BTC)
{{$rate->currency->name}}{{$rate->currency->unit}}{{$rate->currency->description}}{{$rate->value}}
- -
-
- - -
- -
-
- Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials. -
-
-
- -
-
- -
Vibrant Ecosystem
-
- -
-
- Laravel's robust library of first-party tools and libraries, such as Forge, Vapor, Nova, and Envoyer help you take your projects to the next level. Pair them with powerful open source libraries like Cashier, Dusk, Echo, Horizon, Sanctum, Telescope, and more. -
-
-
-
-
- -
-
-
- - - - - - Shop - - - - - - - - Sponsor - -
-
- -
- Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
diff --git a/routes/web.php b/routes/web.php index b130397..9396c11 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,6 +1,9 @@ selectRaw("id, value, currency_id, relative_id, max(`created_at`) as created_at") + ->groupByRaw('currency_id') + ->get(); + + $rates = new Collection(); + foreach($ratesRaw as $r) { + $rates->push(Rates::find($r->id)); + } + return view('welcome', ['currencies' => Currency::all(), 'rates' => $rates]); }); diff --git a/storage/app/.gitignore b/storage/app/.gitignore deleted file mode 100644 index 8f4803c..0000000 --- a/storage/app/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!public/ -!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/app/public/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore deleted file mode 100644 index 05c4471..0000000 --- a/storage/framework/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -compiled.php -config.php -down -events.scanned.php -maintenance.php -routes.php -routes.scanned.php -schedule-* -services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore deleted file mode 100644 index 01e4a6c..0000000 --- a/storage/framework/cache/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!data/ -!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/framework/cache/data/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/framework/sessions/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/framework/sessions/6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN9 b/storage/framework/sessions/6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN9 new file mode 100644 index 0000000..19594ed --- /dev/null +++ b/storage/framework/sessions/6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN9 @@ -0,0 +1 @@ +a:3:{s:6:"_token";s:40:"Nbeu7DAl5x84ynKApAhJdlUlff0yNGCoaKqwd3Qg";s:9:"_previous";a:1:{s:3:"url";s:21:"http://localhost:8000";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}} \ No newline at end of file diff --git a/storage/framework/sessions/bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy b/storage/framework/sessions/bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy new file mode 100644 index 0000000..30261b6 --- /dev/null +++ b/storage/framework/sessions/bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy @@ -0,0 +1 @@ +a:3:{s:6:"_token";s:40:"Sb5MBBwnnUqkhRaYmbUB8wQKjTlzP4DbiMoLuKEN";s:9:"_previous";a:1:{s:3:"url";s:21:"http://localhost:8000";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}} \ No newline at end of file diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/framework/testing/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/framework/views/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php b/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php new file mode 100644 index 0000000..fb7adbf --- /dev/null +++ b/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php @@ -0,0 +1,65 @@ + + + + + + + Bitcoin Price References + + + + + + + + + + +
+
+
+ Bitcoin Price Reference +
+ +
+
+
+
+
+ Last Update: updated_at); ?>
+ Current price reference: +
+ + + + + + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $rate): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
NameUnitDescriptionLast Rate (to BTC)
currency->name); ?>currency->unit); ?>currency->description); ?>value); ?>
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/storage/framework/views/95b5e2df885fbdfd1938572f632a4f072bbcedfc.php b/storage/framework/views/95b5e2df885fbdfd1938572f632a4f072bbcedfc.php new file mode 100644 index 0000000..e4e9448 --- /dev/null +++ b/storage/framework/views/95b5e2df885fbdfd1938572f632a4f072bbcedfc.php @@ -0,0 +1,5 @@ +startSection('title', __('Not Found')); ?> +startSection('code', '404'); ?> +startSection('message', __('Not Found')); ?> + +make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php b/storage/framework/views/e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php new file mode 100644 index 0000000..01b6310 --- /dev/null +++ b/storage/framework/views/e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php @@ -0,0 +1,39 @@ + + + + + + + <?php echo $__env->yieldContent('title'); ?> + + + + + + + + + + +
+
+
+
+ yieldContent('code'); ?> +
+ +
+ yieldContent('message'); ?> +
+
+
+
+ + + \ No newline at end of file diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/storage/logs/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/storage/logs/laravel.log b/storage/logs/laravel.log new file mode 100644 index 0000000..cee5bed --- /dev/null +++ b/storage/logs/laravel.log @@ -0,0 +1,33193 @@ +[2022-08-02 15:33:49] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:36) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(88): Illuminate\\View\\Compilers\\Compiler->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(873): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(758): Illuminate\\Container\\Container->build() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(851): Illuminate\\Container\\Container->resolve() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(694): Illuminate\\Foundation\\Application->resolve() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(836): Illuminate\\Container\\Container->make() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(1419): Illuminate\\Foundation\\Application->make() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(150): Illuminate\\Container\\Container->offsetGet() +#8 [internal function]: Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php(55): call_user_func() +#10 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(467): Illuminate\\View\\Engines\\EngineResolver->resolve() +#11 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(158): Facade\\Ignition\\IgnitionServiceProvider->hasCustomViewEnginesRegistered() +#12 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(101): Facade\\Ignition\\IgnitionServiceProvider->registerViewEngines() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Facade\\Ignition\\IgnitionServiceProvider->boot() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(924): Illuminate\\Container\\Container->call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#20 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(310): Illuminate\\Foundation\\Application->bootstrapWith() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(127): Illuminate\\Foundation\\Console\\Kernel->bootstrap() +#26 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#27 {main} +"} +[2022-08-02 15:34:09] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:36) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(88): Illuminate\\View\\Compilers\\Compiler->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(873): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(758): Illuminate\\Container\\Container->build() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(851): Illuminate\\Container\\Container->resolve() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(694): Illuminate\\Foundation\\Application->resolve() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(836): Illuminate\\Container\\Container->make() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(1419): Illuminate\\Foundation\\Application->make() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(150): Illuminate\\Container\\Container->offsetGet() +#8 [internal function]: Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php(55): call_user_func() +#10 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(467): Illuminate\\View\\Engines\\EngineResolver->resolve() +#11 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(158): Facade\\Ignition\\IgnitionServiceProvider->hasCustomViewEnginesRegistered() +#12 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/IgnitionServiceProvider.php(101): Facade\\Ignition\\IgnitionServiceProvider->registerViewEngines() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Facade\\Ignition\\IgnitionServiceProvider->boot() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(924): Illuminate\\Container\\Container->call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#20 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(310): Illuminate\\Foundation\\Application->bootstrapWith() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(127): Illuminate\\Foundation\\Console\\Kernel->bootstrap() +#26 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#27 {main} +"} +[2022-08-02 15:52:23] local.ERROR: Command "server" is not defined. + +Did you mean one of these? + make:observer + serve {"exception":"[object] (Symfony\\Component\\Console\\Exception\\CommandNotFoundException(code: 0): Command \"server\" is not defined. + +Did you mean one of these? + make:observer + serve at /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php:718) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(259): Symfony\\Component\\Console\\Application->find() +#1 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#4 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#5 {main} +"} +[2022-08-02 15:53:45] local.ERROR: could not find driver (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): could not find driver (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#23 {main} + +[previous exception] [object] (PDOException(code: 0): could not find driver at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(70): PDO->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(46): Illuminate\\Database\\Connectors\\Connector->createPdoConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php(24): Illuminate\\Database\\Connectors\\Connector->createConnection() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(184): Illuminate\\Database\\Connectors\\MySqlConnector->connect() +#4 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1100): Illuminate\\Database\\Connection->getPdo() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(442): Illuminate\\Database\\Connection->getReadPdo() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): Illuminate\\Database\\Connection->getPdoForSelect() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#29 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#32 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#33 {main} +"} +[2022-08-02 15:54:12] local.ERROR: could not find driver (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): could not find driver (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#23 {main} + +[previous exception] [object] (PDOException(code: 0): could not find driver at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(70): PDO->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(46): Illuminate\\Database\\Connectors\\Connector->createPdoConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php(24): Illuminate\\Database\\Connectors\\Connector->createConnection() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(184): Illuminate\\Database\\Connectors\\MySqlConnector->connect() +#4 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1100): Illuminate\\Database\\Connection->getPdo() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(442): Illuminate\\Database\\Connection->getReadPdo() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): Illuminate\\Database\\Connection->getPdoForSelect() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#29 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#32 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#33 {main} +"} +[2022-08-02 15:54:52] local.ERROR: SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') {"exception":"[object] (Illuminate\\Database\\QueryException(code: 2002): SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(784): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(764): Illuminate\\Database\\Connection->tryAgainIfCausedByLostConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(675): Illuminate\\Database\\Connection->handleQueryException() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#25 {main} + +[previous exception] [object] (PDOException(code: 2002): SQLSTATE[HY000] [2002] Connection refused at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(70): PDO->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(100): Illuminate\\Database\\Connectors\\Connector->createPdoConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(50): Illuminate\\Database\\Connectors\\Connector->tryAgainIfCausedByLostConnection() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php(24): Illuminate\\Database\\Connectors\\Connector->createConnection() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(184): Illuminate\\Database\\Connectors\\MySqlConnector->connect() +#5 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1100): Illuminate\\Database\\Connection->getPdo() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(442): Illuminate\\Database\\Connection->getReadPdo() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): Illuminate\\Database\\Connection->getPdoForSelect() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(784): Illuminate\\Database\\Connection->runQueryCallback() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(764): Illuminate\\Database\\Connection->tryAgainIfCausedByLostConnection() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(675): Illuminate\\Database\\Connection->handleQueryException() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#31 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#32 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#35 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#36 {main} +"} +[2022-08-02 15:55:26] local.ERROR: SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') {"exception":"[object] (Illuminate\\Database\\QueryException(code: 2002): SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = /absolute/path/to/database.sqlite and table_name = migrations and table_type = 'BASE TABLE') at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(784): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(764): Illuminate\\Database\\Connection->tryAgainIfCausedByLostConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(675): Illuminate\\Database\\Connection->handleQueryException() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#25 {main} + +[previous exception] [object] (PDOException(code: 2002): SQLSTATE[HY000] [2002] Connection refused at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(70): PDO->__construct() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(100): Illuminate\\Database\\Connectors\\Connector->createPdoConnection() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php(50): Illuminate\\Database\\Connectors\\Connector->tryAgainIfCausedByLostConnection() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php(24): Illuminate\\Database\\Connectors\\Connector->createConnection() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(184): Illuminate\\Database\\Connectors\\MySqlConnector->connect() +#5 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1100): Illuminate\\Database\\Connection->getPdo() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(442): Illuminate\\Database\\Connection->getReadPdo() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): Illuminate\\Database\\Connection->getPdoForSelect() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(784): Illuminate\\Database\\Connection->runQueryCallback() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(764): Illuminate\\Database\\Connection->tryAgainIfCausedByLostConnection() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(675): Illuminate\\Database\\Connection->handleQueryException() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php(44): Illuminate\\Database\\Connection->select() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(169): Illuminate\\Database\\Schema\\MySqlBuilder->hasTable() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#31 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#32 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#35 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#36 {main} +"} +[2022-08-02 15:56:05] local.ERROR: Database (/absolute/path/to/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): Database (/absolute/path/to/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (InvalidArgumentException(code: 0): Database (/absolute/path/to/database.sqlite) does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php:34) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(222): Illuminate\\Database\\Connectors\\SQLiteConnector->connect() +#1 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->getPdo() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#29 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#31 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#34 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#35 {main} +"} +[2022-08-02 15:56:12] local.ERROR: Database (/absolute/path/to/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): Database (/absolute/path/to/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (InvalidArgumentException(code: 0): Database (/absolute/path/to/database.sqlite) does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php:34) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(222): Illuminate\\Database\\Connectors\\SQLiteConnector->connect() +#1 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->getPdo() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#29 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#31 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#34 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#35 {main} +"} +[2022-08-02 15:59:40] local.ERROR: Method Illuminate\Database\Schema\Blueprint::int does not exist. {"exception":"[object] (BadMethodCallException(code: 0): Method Illuminate\\Database\\Schema\\Blueprint::int does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(19): Illuminate\\Database\\Schema\\Blueprint->__call() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(226): CreateRatesTable->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/helpers.php(263): Illuminate\\Database\\Schema\\Builder->Illuminate\\Database\\Schema\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): tap() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#29 {main} +"} +[2022-08-02 16:01:37] local.ERROR: Method Illuminate\Database\Schema\Blueprint::int does not exist. {"exception":"[object] (BadMethodCallException(code: 0): Method Illuminate\\Database\\Schema\\Blueprint::int does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(19): Illuminate\\Database\\Schema\\Blueprint->__call() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(226): CreateRatesTable->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/helpers.php(263): Illuminate\\Database\\Schema\\Builder->Illuminate\\Database\\Schema\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): tap() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#29 {main} +"} +[2022-08-02 16:01:54] local.ERROR: Method Illuminate\Database\Schema\Blueprint::int does not exist. {"exception":"[object] (BadMethodCallException(code: 0): Method Illuminate\\Database\\Schema\\Blueprint::int does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(19): Illuminate\\Database\\Schema\\Blueprint->__call() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(226): CreateRatesTable->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/helpers.php(263): Illuminate\\Database\\Schema\\Builder->Illuminate\\Database\\Schema\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): tap() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#29 {main} +"} +[2022-08-02 16:02:51] local.ERROR: Method Illuminate\Database\Schema\Blueprint::int does not exist. {"exception":"[object] (BadMethodCallException(code: 0): Method Illuminate\\Database\\Schema\\Blueprint::int does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(19): Illuminate\\Database\\Schema\\Blueprint->__call() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(226): CreateRatesTable->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/helpers.php(263): Illuminate\\Database\\Schema\\Builder->Illuminate\\Database\\Schema\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): tap() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#29 {main} +"} +[2022-08-02 16:03:04] local.ERROR: Method Illuminate\Database\Schema\Blueprint::int does not exist. {"exception":"[object] (BadMethodCallException(code: 0): Method Illuminate\\Database\\Schema\\Blueprint::int does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(19): Illuminate\\Database\\Schema\\Blueprint->__call() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(226): CreateRatesTable->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/helpers.php(263): Illuminate\\Database\\Schema\\Builder->Illuminate\\Database\\Schema\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): tap() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#29 {main} +"} +[2022-08-02 16:05:49] local.ERROR: Database (/home/calvin/work/2022/08/02/example-app/database/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): Database (/home/calvin/work/2022/08/02/example-app/database/database.sqlite) does not exist. (SQL: PRAGMA foreign_keys = ON;) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (InvalidArgumentException(code: 0): Database (/home/calvin/work/2022/08/02/example-app/database/database.sqlite) does not exist. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php:34) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(222): Illuminate\\Database\\Connectors\\SQLiteConnector->connect() +#1 [internal function]: Illuminate\\Database\\Connectors\\ConnectionFactory->Illuminate\\Database\\Connectors\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(1064): call_user_func() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->getPdo() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(340): Illuminate\\Database\\Connection->statement() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php(37): Illuminate\\Database\\Schema\\Builder->enableForeignKeyConstraints() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(282): Illuminate\\Database\\SQLiteConnection->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(76): Illuminate\\Database\\Connectors\\ConnectionFactory->createConnection() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php(50): Illuminate\\Database\\Connectors\\ConnectionFactory->createSingleConnection() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(140): Illuminate\\Database\\Connectors\\ConnectionFactory->make() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(95): Illuminate\\Database\\DatabaseManager->makeConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(211): Illuminate\\Database\\DatabaseManager->connection() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php(167): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->getConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(673): Illuminate\\Database\\Migrations\\DatabaseMigrationRepository->repositoryExists() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(110): Illuminate\\Database\\Migrations\\Migrator->repositoryExists() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(78): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#29 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#31 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#34 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#35 {main} +"} +[2022-08-02 16:08:24] local.ERROR: syntax error, unexpected 'array' (T_ARRAY), expecting ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected 'array' (T_ARRAY), expecting ')' at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:36) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(133): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(547): Illuminate\\Filesystem\\Filesystem->requireOnce() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(106): Illuminate\\Database\\Migrations\\Migrator->requireFiles() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#19 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#20 {main} +"} +[2022-08-02 16:08:30] local.ERROR: syntax error, unexpected 'array' (T_ARRAY), expecting ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected 'array' (T_ARRAY), expecting ')' at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:36) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(133): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(547): Illuminate\\Filesystem\\Filesystem->requireOnce() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(106): Illuminate\\Database\\Migrations\\Migrator->requireFiles() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#19 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#20 {main} +"} +[2022-08-02 16:20:29] local.ERROR: syntax error, unexpected ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ')' at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:18) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(133): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(547): Illuminate\\Filesystem\\Filesystem->requireOnce() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(106): Illuminate\\Database\\Migrations\\Migrator->requireFiles() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#19 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#20 {main} +"} +[2022-08-02 16:20:38] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: coins.unit (SQL: insert into "coins" ("name", "description") values (Bitcoin, Created by Satoshi)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: coins.unit (SQL: insert into \"coins\" (\"name\", \"description\") values (Bitcoin, Created by Satoshi)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(32): Illuminate\\Database\\Query\\Builder->insert() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#28 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: coins.unit at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(32): Illuminate\\Database\\Query\\Builder->insert() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} +"} +[2022-08-02 16:21:15] local.ERROR: SQLSTATE[HY000]: General error: 1 table "coins" already exists (SQL: create table "coins" ("id" integer not null primary key autoincrement, "name" varchar not null, "unit" varchar not null, "description" varchar)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"coins\" already exists (SQL: create table \"coins\" (\"id\" integer not null primary key autoincrement, \"name\" varchar not null, \"unit\" varchar not null, \"description\" varchar)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(21): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"coins\" already exists at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(21): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 16:23:32] local.ERROR: syntax error, unexpected '$table' (T_VARIABLE) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '$table' (T_VARIABLE) at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:26) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(133): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(547): Illuminate\\Filesystem\\Filesystem->requireOnce() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(106): Illuminate\\Database\\Migrations\\Migrator->requireFiles() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#19 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#20 {main} +"} +[2022-08-02 16:23:44] local.ERROR: Use of undefined constant coin - assumed 'coin' (this will throw an Error in a future version of PHP) {"exception":"[object] (ErrorException(code: 0): Use of undefined constant coin - assumed 'coin' (this will throw an Error in a future version of PHP) at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:46) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} +"} +[2022-08-02 16:33:21] local.ERROR: syntax error, unexpected 'Satoshi' (T_STRING) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected 'Satoshi' (T_STRING) at /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php:59) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(133): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(547): Illuminate\\Filesystem\\Filesystem->requireOnce() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(106): Illuminate\\Database\\Migrations\\Migrator->requireFiles() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#19 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#20 {main} +"} +[2022-08-02 16:39:33] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named coin_id (SQL: insert into "rates" ("coin_id", "relative_to", "value") values (1, 2, 100000)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named coin_id (SQL: insert into \"rates\" (\"coin_id\", \"relative_to\", \"value\") values (1, 2, 100000)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#28 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named coin_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} +"} +[2022-08-02 16:39:47] local.ERROR: SQLSTATE[HY000]: General error: 1 table "currency" already exists (SQL: create table "currency" ("id" integer not null primary key autoincrement, "name" varchar not null, "unit" varchar not null, "description" varchar)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists (SQL: create table \"currency\" (\"id\" integer not null primary key autoincrement, \"name\" varchar not null, \"unit\" varchar not null, \"description\" varchar)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(21): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(21): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 16:45:34] local.ERROR: SQLSTATE[HY000]: General error: 1 no such table: currencies (SQL: select * from "currencies") {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 no such table: currencies (SQL: select * from \"currencies\") at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(625): Illuminate\\Database\\Query\\Builder->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(609): Illuminate\\Database\\Eloquent\\Builder->getModels() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(568): Illuminate\\Database\\Eloquent\\Builder->get() +#9 /home/calvin/work/2022/08/02/example-app/routes/web.php(20): Illuminate\\Database\\Eloquent\\Model::all() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#44 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#51 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#52 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#53 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 no such table: currencies at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:368) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(625): Illuminate\\Database\\Query\\Builder->get() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(609): Illuminate\\Database\\Eloquent\\Builder->getModels() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(568): Illuminate\\Database\\Eloquent\\Builder->get() +#11 /home/calvin/work/2022/08/02/example-app/routes/web.php(20): Illuminate\\Database\\Eloquent\\Model::all() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#46 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#52 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#53 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#54 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#55 {main} +"} +[2022-08-02 16:46:55] local.ERROR: SQLSTATE[HY000]: General error: 1 no such table: currencies (SQL: select * from "currencies") {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 no such table: currencies (SQL: select * from \"currencies\") at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(625): Illuminate\\Database\\Query\\Builder->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(609): Illuminate\\Database\\Eloquent\\Builder->getModels() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(568): Illuminate\\Database\\Eloquent\\Builder->get() +#9 /home/calvin/work/2022/08/02/example-app/routes/web.php(20): Illuminate\\Database\\Eloquent\\Model::all() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#44 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#51 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#52 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#53 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 no such table: currencies at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:368) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(625): Illuminate\\Database\\Query\\Builder->get() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(609): Illuminate\\Database\\Eloquent\\Builder->getModels() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(568): Illuminate\\Database\\Eloquent\\Builder->get() +#11 /home/calvin/work/2022/08/02/example-app/routes/web.php(20): Illuminate\\Database\\Eloquent\\Model::all() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#46 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#52 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#53 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#54 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#55 {main} +"} +[2022-08-02 16:48:11] local.ERROR: syntax error, unexpected '}', expecting ';' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '}', expecting ';' at /home/calvin/work/2022/08/02/example-app/routes/web.php:21) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(310): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(127): Illuminate\\Foundation\\Console\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 16:51:59] local.ERROR: syntax error, unexpected end of file (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#295
+  #items: array:2 [
+    0 => App\\Models\\Currency {#296
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#297
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Database\\Eloquent\\Collection {#611
+  #items: array:1 [
+    0 => App\\Models\\Rates {#971
+      #connection: \"sqlite\"
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:51) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#3 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#50 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#51 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#52 {main} + +[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:51) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#3 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#50 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#51 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#52 {main} +"} +[2022-08-02 16:52:16] local.ERROR: syntax error, unexpected end of file (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#295
+  #items: array:2 [
+    0 => App\\Models\\Currency {#296
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#297
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Database\\Eloquent\\Collection {#611
+  #items: array:1 [
+    0 => App\\Models\\Rates {#971
+      #connection: \"sqlite\"
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:52) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#3 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#50 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#51 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#52 {main} + +[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:52) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#3 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#50 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#51 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#52 {main} +"} +[2022-08-02 16:59:23] local.ERROR: SQLSTATE[HY000]: General error: 1 unknown column "currency_id" in foreign key definition (SQL: create table "rates" ("id" integer not null primary key autoincrement, "value" float, "created_at" datetime, "updated_at" datetime, foreign key("currency_id") references "currency"("id"), foreign key("relative_id") references "currency"("id"))) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 unknown column \"currency_id\" in foreign key definition (SQL: create table \"rates\" (\"id\" integer not null primary key autoincrement, \"value\" float, \"created_at\" datetime, \"updated_at\" datetime, foreign key(\"currency_id\") references \"currency\"(\"id\"), foreign key(\"relative_id\") references \"currency\"(\"id\"))) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(30): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 unknown column \"currency_id\" in foreign key definition at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(30): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 17:01:14] local.ERROR: SQLSTATE[HY000]: General error: 1 unknown column "currency_id" in foreign key definition (SQL: create table "rates" ("id" integer not null primary key autoincrement, "value" float, "created_at" datetime, "updated_at" datetime, foreign key("currency_id") references "currency"("id"))) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 unknown column \"currency_id\" in foreign key definition (SQL: create table \"rates\" (\"id\" integer not null primary key autoincrement, \"value\" float, \"created_at\" datetime, \"updated_at\" datetime, foreign key(\"currency_id\") references \"currency\"(\"id\"))) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(29): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 unknown column \"currency_id\" in foreign key definition at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(29): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 17:01:31] local.ERROR: SQLSTATE[HY000]: General error: 1 table "currency" already exists (SQL: create table "currency" ("id" integer not null primary key autoincrement, "name" varchar not null, "unit" varchar not null, "description" varchar, "created_at" datetime, "updated_at" datetime)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists (SQL: create table \"currency\" (\"id\" integer not null primary key autoincrement, \"name\" varchar not null, \"unit\" varchar not null, \"description\" varchar, \"created_at\" datetime, \"updated_at\" datetime)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(22): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(22): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 17:01:34] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id (SQL: insert into "rates" ("currency_id", "relative_to", "value") values (1, 2, 100000)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id (SQL: insert into \"rates\" (\"currency_id\", \"relative_to\", \"value\") values (1, 2, 100000)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#28 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} +"} +[2022-08-02 17:01:47] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id (SQL: insert into "rates" ("currency_id", "relative_to", "value") values (1, 2, 100000)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id (SQL: insert into \"rates\" (\"currency_id\", \"relative_to\", \"value\") values (1, 2, 100000)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#28 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(46): Illuminate\\Database\\Query\\Builder->insert() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} +"} +[2022-08-02 17:02:44] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named relative_to (SQL: insert into "rates" ("currency_id", "relative_to", "value") values (1, 2, 100000)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named relative_to (SQL: insert into \"rates\" (\"currency_id\", \"relative_to\", \"value\") values (1, 2, 100000)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(49): Illuminate\\Database\\Query\\Builder->insert() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#23 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#27 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#28 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named relative_to at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2980): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(49): Illuminate\\Database\\Query\\Builder->insert() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} +"} +[2022-08-02 17:02:57] local.ERROR: SQLSTATE[HY000]: General error: 1 table "currency" already exists (SQL: create table "currency" ("id" integer not null primary key autoincrement, "name" varchar not null, "unit" varchar not null, "description" varchar, "created_at" datetime, "updated_at" datetime)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists (SQL: create table \"currency\" (\"id\" integer not null primary key autoincrement, \"name\" varchar not null, \"unit\" varchar not null, \"description\" varchar, \"created_at\" datetime, \"updated_at\" datetime)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#6 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(22): Illuminate\\Support\\Facades\\Facade::__callStatic() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#25 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#29 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#30 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table \"currency\" already exists at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(109): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(364): Illuminate\\Database\\Schema\\Blueprint->build() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(227): Illuminate\\Database\\Schema\\Builder->build() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->create() +#8 /home/calvin/work/2022/08/02/example-app/database/migrations/2021_08_02_000000_create_rates_table.php(22): Illuminate\\Support\\Facades\\Facade::__callStatic() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(472): CreateRatesTable->up() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(394): Illuminate\\Database\\Migrations\\Migrator->runMethod() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(403): Illuminate\\Database\\Migrations\\Migrator->Illuminate\\Database\\Migrations\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(202): Illuminate\\Database\\Migrations\\Migrator->runMigration() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(167): Illuminate\\Database\\Migrations\\Migrator->runUp() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(112): Illuminate\\Database\\Migrations\\Migrator->runPending() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(86): Illuminate\\Database\\Migrations\\Migrator->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(606): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->Illuminate\\Database\\Console\\Migrations\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(98): Illuminate\\Database\\Migrations\\Migrator->usingConnection() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#24 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#26 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#27 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#28 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#31 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#32 {main} +"} +[2022-08-02 17:04:22] local.ERROR: Trying to get property 'unit' of non-object (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#295
+  #items: array:2 [
+    0 => App\\Models\\Currency {#296
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#297
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Database\\Eloquent\\Collection {#611
+  #items: array:1 [
+    0 => App\\Models\\Rates {#971
+      #connection: \"sqlite\"
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: array:1 [ …1]
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #fillable: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Trying to get property 'unit' of non-object (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:44) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(44): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Trying to get property 'unit' of non-object at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:44) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(44): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 17:05:00] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ']' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ']' at /home/calvin/work/2022/08/02/example-app/routes/web.php:20) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 17:06:05] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:20) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 17:06:12] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:20) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 17:06:51] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:20) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 17:07:10] local.ERROR: syntax error, unexpected ';', expecting ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ';', expecting ')' at /home/calvin/work/2022/08/02/example-app/routes/web.php:24) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 17:07:19] local.ERROR: Undefined property: App\Models\Rates::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php","data":[]},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: App\\Models\\Rates::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:97) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(97): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(87): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(67): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(234): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(218): Illuminate\\Database\\Eloquent\\Model->newBelongsTo() +#5 /home/calvin/work/2022/08/02/example-app/app/Models/Rates.php(13): Illuminate\\Database\\Eloquent\\Model->belongsTo() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(539): App\\Models\\Rates->currency() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(491): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(440): Illuminate\\Database\\Eloquent\\Model->getRelationValue() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2029): Illuminate\\Database\\Eloquent\\Model->getAttribute() +#10 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(44): Illuminate\\Database\\Eloquent\\Model->__get() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#15 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#52 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#53 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#54 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#55 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#56 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#57 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#58 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#59 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#60 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#61 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#62 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#63 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#64 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: App\\Models\\Rates::$currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:97) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(97): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(87): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(67): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(234): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(218): Illuminate\\Database\\Eloquent\\Model->newBelongsTo() +#5 /home/calvin/work/2022/08/02/example-app/app/Models/Rates.php(13): Illuminate\\Database\\Eloquent\\Model->belongsTo() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(539): App\\Models\\Rates->currency() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(491): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(440): Illuminate\\Database\\Eloquent\\Model->getRelationValue() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2029): Illuminate\\Database\\Eloquent\\Model->getAttribute() +#10 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(44): Illuminate\\Database\\Eloquent\\Model->__get() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#15 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#52 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#53 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#54 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#55 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#56 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#57 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#58 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#59 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#60 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#61 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#62 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#63 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#64 {main} +"} +[2022-08-02 17:07:27] local.ERROR: Undefined property: App\Models\Rates::$currency {"exception":"[object] (ErrorException(code: 0): Undefined property: App\\Models\\Rates::$currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:97) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(97): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(87): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(67): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(234): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php(218): Illuminate\\Database\\Eloquent\\Model->newBelongsTo() +#5 /home/calvin/work/2022/08/02/example-app/app/Models/Rates.php(13): Illuminate\\Database\\Eloquent\\Model->belongsTo() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(539): App\\Models\\Rates->currency() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(491): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(440): Illuminate\\Database\\Eloquent\\Model->getRelationValue() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2029): Illuminate\\Database\\Eloquent\\Model->getAttribute() +#10 /home/calvin/work/2022/08/02/example-app/routes/web.php(21): Illuminate\\Database\\Eloquent\\Model->__get() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 17:14:30] local.ERROR: Class 'App\Console\Commands\Log' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\Log' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:40) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:14:37] local.ERROR: Class 'App\Console\Commands\GuzzleHttp\Client' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\GuzzleHttp\\Client' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:41) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:14:52] local.ERROR: Class 'App\Console\Commands\GuzzleHttp\Client' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\GuzzleHttp\\Client' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:42) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:14:58] local.ERROR: Class 'App\Console\Commands\GuzzleHttp\Client' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\GuzzleHttp\\Client' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:42) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:15:20] local.ERROR: Class 'App\Console\Commands\GuzzleHttp\Client' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\GuzzleHttp\\Client' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:42) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:15:48] local.ERROR: Class 'App\Console\Commands\GuzzleHttp\Client' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\GuzzleHttp\\Client' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:42) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:15:57] local.ERROR: Object of class GuzzleHttp\Psr7\Response could not be converted to string {"exception":"[object] (Error(code: 0): Object of class GuzzleHttp\\Psr7\\Response could not be converted to string at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:44) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:16:02] local.ERROR: Object of class GuzzleHttp\Psr7\Response could not be converted to string {"exception":"[object] (Error(code: 0): Object of class GuzzleHttp\\Psr7\\Response could not be converted to string at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:44) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:16:07] local.ERROR: Object of class GuzzleHttp\Psr7\Response could not be converted to string {"exception":"[object] (Error(code: 0): Object of class GuzzleHttp\\Psr7\\Response could not be converted to string at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:44) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:18:00] local.ERROR: Undefined variable: response {"exception":"[object] (ErrorException(code: 0): Undefined variable: response at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:45) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(45): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 17:18:07] local.ERROR: Array to string conversion {"exception":"[object] (ErrorException(code: 0): Array to string conversion at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:49) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(49): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 17:23:07] local.ERROR: Class 'App\Console\Commands\Rates' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\Rates' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:52) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:23:29] local.ERROR: Add [value] to fillable property to allow mass assignment on [App\Models\Rates]. {"exception":"[object] (Illuminate\\Database\\Eloquent\\MassAssignmentException(code: 0): Add [value] to fillable property to allow mass assignment on [App\\Models\\Rates]. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:433) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(212): Illuminate\\Database\\Eloquent\\Model->fill() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(496): Illuminate\\Database\\Eloquent\\Model->__construct() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1342): Illuminate\\Database\\Eloquent\\Model->newInstance() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(895): Illuminate\\Database\\Eloquent\\Builder->newModelInstance() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#7 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(53): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#21 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#22 {main} +"} +[2022-08-02 17:24:05] local.ERROR: Add [value] to fillable property to allow mass assignment on [App\Models\Rates]. {"exception":"[object] (Illuminate\\Database\\Eloquent\\MassAssignmentException(code: 0): Add [value] to fillable property to allow mass assignment on [App\\Models\\Rates]. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:433) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(212): Illuminate\\Database\\Eloquent\\Model->fill() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(496): Illuminate\\Database\\Eloquent\\Model->__construct() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1342): Illuminate\\Database\\Eloquent\\Model->newInstance() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(895): Illuminate\\Database\\Eloquent\\Builder->newModelInstance() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->create() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#7 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(53): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#14 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#17 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#21 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#22 {main} +"} +[2022-08-02 17:24:37] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into "rates" ("value", "updated_at", "created_at") values (?, 2022-08-02 17:24:37, 2022-08-02 17:24:37)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into \"rates\" (\"value\", \"updated_at\", \"created_at\") values (?, 2022-08-02 17:24:37, 2022-08-02 17:24:37)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(55): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(55): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:25:41] local.ERROR: Class 'App\Console\Commands\Currency' not found {"exception":"[object] (Error(code: 0): Class 'App\\Console\\Commands\\Currency' not found at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:55) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#14 {main} +"} +[2022-08-02 17:28:34] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into "rates" ("value", "updated_at", "created_at") values (?, 2022-08-02 17:28:34, 2022-08-02 17:28:34)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into \"rates\" (\"value\", \"updated_at\", \"created_at\") values (?, 2022-08-02 17:28:34, 2022-08-02 17:28:34)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:28:42] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into "rates" ("value", "currency", "updated_at", "created_at") values (?, {"id":1,"name":"Bitcoin","unit":"BTC","description":"Created by Satoshi","created_at":null,"updated_at":null}, 2022-08-02 17:28:42, 2022-08-02 17:28:42)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into \"rates\" (\"value\", \"currency\", \"updated_at\", \"created_at\") values (?, {\"id\":1,\"name\":\"Bitcoin\",\"unit\":\"BTC\",\"description\":\"Created by Satoshi\",\"created_at\":null,\"updated_at\":null}, 2022-08-02 17:28:42, 2022-08-02 17:28:42)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:29:43] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into "rates" ("value", "currency", "updated_at", "created_at") values (?, {"id":1,"name":"Bitcoin","unit":"BTC","description":"Created by Satoshi","created_at":null,"updated_at":null}, 2022-08-02 17:29:43, 2022-08-02 17:29:43)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into \"rates\" (\"value\", \"currency\", \"updated_at\", \"created_at\") values (?, {\"id\":1,\"name\":\"Bitcoin\",\"unit\":\"BTC\",\"description\":\"Created by Satoshi\",\"created_at\":null,\"updated_at\":null}, 2022-08-02 17:29:43, 2022-08-02 17:29:43)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:30:06] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id (SQL: insert into "rates" ("value", "currency_id", "updated_at", "created_at") values (?, {"id":1,"name":"Bitcoin","unit":"BTC","description":"Created by Satoshi","created_at":null,"updated_at":null}, 2022-08-02 17:30:06, 2022-08-02 17:30:06)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id (SQL: insert into \"rates\" (\"value\", \"currency_id\", \"updated_at\", \"created_at\") values (?, {\"id\":1,\"name\":\"Bitcoin\",\"unit\":\"BTC\",\"description\":\"Created by Satoshi\",\"created_at\":null,\"updated_at\":null}, 2022-08-02 17:30:06, 2022-08-02 17:30:06)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:30:20] local.ERROR: Call to undefined method App\Models\Currency::id() {"exception":"[object] (BadMethodCallException(code: 0): Call to undefined method App\\Models\\Currency::id() at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:71) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#2 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->__call() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#13 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#16 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#17 {main} +"} +[2022-08-02 17:30:30] local.ERROR: Call to undefined method App\Models\Currency::getId() {"exception":"[object] (BadMethodCallException(code: 0): Call to undefined method App\\Models\\Currency::getId() at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:71) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#2 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(61): Illuminate\\Database\\Eloquent\\Model->__call() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#13 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#16 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#17 {main} +"} +[2022-08-02 17:30:40] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id (SQL: insert into "rates" ("value", "currency_id", "updated_at", "created_at") values (?, 1, 2022-08-02 17:30:40, 2022-08-02 17:30:40)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id (SQL: insert into \"rates\" (\"value\", \"currency_id\", \"updated_at\", \"created_at\") values (?, 1, 2022-08-02 17:30:40, 2022-08-02 17:30:40)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.relative_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(62): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:35:17] local.ERROR: Property [id] does not exist on this collection instance. {"exception":"[object] (Exception(code: 0): Property [id] does not exist on this collection instance. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:969) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(72): Illuminate\\Support\\Collection->__get() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 17:36:02] local.ERROR: Property [id] does not exist on this collection instance. {"exception":"[object] (Exception(code: 0): Property [id] does not exist on this collection instance. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:969) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(72): Illuminate\\Support\\Collection->__get() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 17:38:06] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:64) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(64): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 17:38:18] local.ERROR: Add [name] to fillable property to allow mass assignment on [App\Models\Currency]. {"exception":"[object] (Illuminate\\Database\\Eloquent\\MassAssignmentException(code: 0): Add [name] to fillable property to allow mass assignment on [App\\Models\\Currency]. at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:433) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(212): Illuminate\\Database\\Eloquent\\Model->fill() +#1 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(64): Illuminate\\Database\\Eloquent\\Model->__construct() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#8 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#12 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#15 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#16 {main} +"} +[2022-08-02 17:38:39] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into "currency" ("updated_at", "created_at") values (2022-08-02 17:38:39, 2022-08-02 17:38:39)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into \"currency\" (\"updated_at\", \"created_at\") values (2022-08-02 17:38:39, 2022-08-02 17:38:39)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:39:58] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into "currency" ("updated_at", "created_at") values (2022-08-02 17:39:58, 2022-08-02 17:39:58)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into \"currency\" (\"updated_at\", \"created_at\") values (2022-08-02 17:39:58, 2022-08-02 17:39:58)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:40:22] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into "currency" ("updated_at", "created_at") values (2022-08-02 17:40:22, 2022-08-02 17:40:22)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name (SQL: insert into \"currency\" (\"updated_at\", \"created_at\") values (2022-08-02 17:40:22, 2022-08-02 17:40:22)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: currency.name at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(65): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:44:13] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into "rates" ("value", "updated_at", "created_at") values (1, 2022-08-02 17:44:13, 2022-08-02 17:44:13)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into \"rates\" (\"value\", \"updated_at\", \"created_at\") values (1, 2022-08-02 17:44:13, 2022-08-02 17:44:13)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:44:25] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into "rates" ("value", "updated_at", "created_at") values (1, 2022-08-02 17:44:25, 2022-08-02 17:44:25)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into \"rates\" (\"value\", \"updated_at\", \"created_at\") values (1, 2022-08-02 17:44:25, 2022-08-02 17:44:25)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:45:04] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into "rates" ("value", "currency", "relative", "updated_at", "created_at") values (1, {"id":1,"name":"Bitcoin","unit":"BTC","description":"Created by Satoshi","created_at":null,"updated_at":null}, {"id":1,"name":"Bitcoin","unit":"BTC","description":"Created by Satoshi","created_at":null,"updated_at":null}, 2022-08-02 17:45:04, 2022-08-02 17:45:04)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into \"rates\" (\"value\", \"currency\", \"relative\", \"updated_at\", \"created_at\") values (1, {\"id\":1,\"name\":\"Bitcoin\",\"unit\":\"BTC\",\"description\":\"Created by Satoshi\",\"created_at\":null,\"updated_at\":null}, {\"id\":1,\"name\":\"Bitcoin\",\"unit\":\"BTC\",\"description\":\"Created by Satoshi\",\"created_at\":null,\"updated_at\":null}, 2022-08-02 17:45:04, 2022-08-02 17:45:04)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:45:14] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into "rates" ("value", "currency", "relative", "updated_at", "created_at") values (1, 1, 1, 2022-08-02 17:45:14, 2022-08-02 17:45:14)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency (SQL: insert into \"rates\" (\"value\", \"currency\", \"relative\", \"updated_at\", \"created_at\") values (1, 1, 1, 2022-08-02 17:45:14, 2022-08-02 17:45:14)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named currency at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:45:22] local.ERROR: SQLSTATE[HY000]: General error: 1 table rates has no column named relative (SQL: insert into "rates" ("value", "relative", "updated_at", "created_at") values (1, 1, 2022-08-02 17:45:22, 2022-08-02 17:45:22)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named relative (SQL: insert into \"rates\" (\"value\", \"relative\", \"updated_at\", \"created_at\") values (1, 1, 2022-08-02 17:45:22, 2022-08-02 17:45:22)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 table rates has no column named relative at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:495) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:45:26] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into "rates" ("value", "updated_at", "created_at") values (1, 2022-08-02 17:45:26, 2022-08-02 17:45:26)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id (SQL: insert into \"rates\" (\"value\", \"updated_at\", \"created_at\") values (1, 2022-08-02 17:45:26, 2022-08-02 17:45:26)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.currency_id at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:46:41] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.value (SQL: insert into "rates" ("value", "currency_id", "relative_id", "updated_at", "created_at") values (?, 1, 1, 2022-08-02 17:46:41, 2022-08-02 17:46:41)) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.value (SQL: insert into \"rates\" (\"value\", \"currency_id\", \"relative_id\", \"updated_at\", \"created_at\") values (?, 1, 1, 2022-08-02 17:46:41, 2022-08-02 17:46:41)) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#9 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(73): Illuminate\\Database\\Eloquent\\Model->save() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#19 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#23 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#24 {main} + +[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: rates.value at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:501) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(501): PDOStatement->execute() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(502): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(454): Illuminate\\Database\\Connection->statement() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3028): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1657): Illuminate\\Database\\Query\\Builder->insertGetId() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1188): Illuminate\\Database\\Eloquent\\Builder->__call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1153): Illuminate\\Database\\Eloquent\\Model->insertAndSetId() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(994): Illuminate\\Database\\Eloquent\\Model->performInsert() +#11 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(73): Illuminate\\Database\\Eloquent\\Model->save() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#18 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#20 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#21 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#22 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 17:47:07] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php:70) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/app/Console/Commands/updateRates.php(70): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Console\\Commands\\updateRates->handle() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(136): Illuminate\\Container\\Container->call() +#7 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Command/Command.php(298): Illuminate\\Console\\Command->execute() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run() +#9 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(1024): Illuminate\\Console\\Command->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(299): Symfony\\Component\\Console\\Application->doRunCommand() +#11 /home/calvin/work/2022/08/02/example-app/vendor/symfony/console/Application.php(171): Symfony\\Component\\Console\\Application->doRun() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Console/Application.php(94): Symfony\\Component\\Console\\Application->run() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Console\\Application->run() +#14 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#15 {main} +"} +[2022-08-02 18:03:31] local.ERROR: Undefined property: Illuminate\Routing\RouteFileRegistrar::$connection {"exception":"[object] (ErrorException(code: 0): Undefined property: Illuminate\\Routing\\RouteFileRegistrar::$connection at /home/calvin/work/2022/08/02/example-app/routes/web.php:25) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(25): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:03:44] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#355
+  #items: array:58 [
+    0 => App\\Models\\Currency {#356
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#357
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#358
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#359
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#360
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#361
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#362
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#363
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#364
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#365
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#366
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#367
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#368
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#369
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#370
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#371
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#372
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#373
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#374
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#375
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#376
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#377
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#378
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#379
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#380
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#381
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#382
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#383
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#384
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#385
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#386
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#387
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#388
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#389
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#390
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#391
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#392
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#393
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#394
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#395
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#396
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#397
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#398
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#399
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#400
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#401
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#402
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#403
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#404
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#405
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#406
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#407
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#408
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#409
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#410
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#288
+  #items: array:2 [
+    0 => {#291
+      +\""value, currency_id, relative_id, max(created_at)"\": \"value, currency_id, relative_id, max(created_at)\"
+    }
+    1 => {#292
+      +\""value, currency_id, relative_id, max(created_at)"\": \"value, currency_id, relative_id, max(created_at)\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:04:03] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#355
+  #items: array:58 [
+    0 => App\\Models\\Currency {#356
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#357
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#358
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#359
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#360
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#361
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#362
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#363
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#364
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#365
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#366
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#367
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#368
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#369
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#370
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#371
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#372
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#373
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#374
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#375
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#376
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#377
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#378
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#379
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#380
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#381
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#382
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#383
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#384
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#385
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#386
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#387
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#388
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#389
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#390
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#391
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#392
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#393
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#394
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#395
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#396
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#397
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#398
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#399
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#400
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#401
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#402
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#403
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#404
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#405
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#406
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#407
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#408
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#409
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#410
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#288
+  #items: array:2 [
+    0 => {#291
+      +\""value, currency_id, relative_id, max(created_at)"\": \"value, currency_id, relative_id, max(created_at)\"
+    }
+    1 => {#292
+      +\""value, currency_id, relative_id, max(created_at)"\": \"value, currency_id, relative_id, max(created_at)\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:04:45] local.ERROR: Argument 1 passed to Illuminate\Database\Eloquent\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 {"exception":"[object] (TypeError(code: 0): Argument 1 passed to Illuminate\\Database\\Eloquent\\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:358) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->hydrate() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#3 /home/calvin/work/2022/08/02/example-app/routes/web.php(29): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#45 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#46 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#47 {main} +"} +[2022-08-02 18:05:25] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(30): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:05:30] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:05:55] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(30): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:06:33] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:06:44] local.ERROR: syntax error, unexpected 'print_r' (T_STRING) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected 'print_r' (T_STRING) at /home/calvin/work/2022/08/02/example-app/routes/web.php:29) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:06:49] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(30): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:06:55] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:07:16] local.ERROR: Invalid argument supplied for foreach() (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#355
+  #items: array:58 [
+    0 => App\\Models\\Currency {#356
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#357
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#358
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#359
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#360
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#361
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#362
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#363
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#364
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#365
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#366
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#367
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#368
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#369
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#370
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#371
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#372
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#373
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#374
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#375
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#376
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#377
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#378
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#379
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#380
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#381
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#382
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#383
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#384
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#385
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#386
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#387
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#388
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#389
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#390
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#391
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#392
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#393
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#394
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#395
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#396
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#397
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#398
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#399
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#400
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#401
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#402
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#403
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#404
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#405
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#406
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#407
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#408
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#409
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#410
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
null
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Invalid argument supplied for foreach() (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:45) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(45): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Invalid argument supplied for foreach() at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:45) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(45): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:08:11] local.ERROR: Undefined property: stdClass::$value {"exception":"[object] (ErrorException(code: 0): Undefined property: stdClass::$value at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:08:23] local.ERROR: Undefined property: stdClass::$value {"exception":"[object] (ErrorException(code: 0): Undefined property: stdClass::$value at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:10:12] local.ERROR: SQLSTATE[HY000]: General error: 1 near "from": syntax error (SQL: select max(updated_at from "rates" group by currency_id) {"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 near \"from\": syntax error (SQL: select max(updated_at from \"rates\" group by currency_id) at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#6 /home/calvin/work/2022/08/02/example-app/routes/web.php(28): Illuminate\\Database\\Query\\Builder->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#48 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#49 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#50 {main} + +[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 near \"from\": syntax error at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php:368) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(368): PDO->prepare() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(705): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(672): Illuminate\\Database\\Connection->runQueryCallback() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Connection.php(376): Illuminate\\Database\\Connection->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2414): Illuminate\\Database\\Connection->select() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2402): Illuminate\\Database\\Query\\Builder->runSelect() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2936): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2403): Illuminate\\Database\\Query\\Builder->onceWithColumns() +#8 /home/calvin/work/2022/08/02/example-app/routes/web.php(28): Illuminate\\Database\\Query\\Builder->get() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#50 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#51 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#52 {main} +"} +[2022-08-02 18:10:48] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:28) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:13:08] local.ERROR: syntax error, unexpected ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ')' at /home/calvin/work/2022/08/02/example-app/routes/web.php:27) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:13:12] local.ERROR: Call to a member function get() on string {"exception":"[object] (Error(code: 0): Call to a member function get() on string at /home/calvin/work/2022/08/02/example-app/routes/web.php:28) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:13:16] local.ERROR: Call to a member function groupByRaw() on string {"exception":"[object] (Error(code: 0): Call to a member function groupByRaw() on string at /home/calvin/work/2022/08/02/example-app/routes/web.php:27) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:13:48] local.ERROR: syntax error, unexpected ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ')' at /home/calvin/work/2022/08/02/example-app/routes/web.php:26) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:13:49] local.ERROR: syntax error, unexpected ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ')' at /home/calvin/work/2022/08/02/example-app/routes/web.php:26) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(310): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(127): Illuminate\\Foundation\\Console\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle() +#26 {main} +"} +[2022-08-02 18:13:55] local.ERROR: Invalid argument supplied for foreach() {"exception":"[object] (ErrorException(code: 0): Invalid argument supplied for foreach() at /home/calvin/work/2022/08/02/example-app/routes/web.php:28) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(28): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:14:07] local.ERROR: Invalid argument supplied for foreach() {"exception":"[object] (ErrorException(code: 0): Invalid argument supplied for foreach() at /home/calvin/work/2022/08/02/example-app/routes/web.php:29) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(29): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:16:50] local.ERROR: Argument 1 passed to Illuminate\Database\Eloquent\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 {"exception":"[object] (TypeError(code: 0): Argument 1 passed to Illuminate\\Database\\Eloquent\\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:358) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->hydrate() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#3 /home/calvin/work/2022/08/02/example-app/routes/web.php(30): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#45 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#46 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#47 {main} +"} +[2022-08-02 18:17:02] local.ERROR: syntax error, unexpected '$rates' (T_VARIABLE) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '$rates' (T_VARIABLE) at /home/calvin/work/2022/08/02/example-app/routes/web.php:29) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:17:05] local.ERROR: Argument 1 passed to Illuminate\Database\Eloquent\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 {"exception":"[object] (TypeError(code: 0): Argument 1 passed to Illuminate\\Database\\Eloquent\\Builder::hydrate() must be of the type array, object given, called in /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php on line 23 at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:358) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->hydrate() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#3 /home/calvin/work/2022/08/02/example-app/routes/web.php(29): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#45 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#46 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#47 {main} +"} +[2022-08-02 18:17:31] local.ERROR: Undefined variable: rates {"exception":"[object] (ErrorException(code: 0): Undefined variable: rates at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/routes/web.php(30): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#35 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#42 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#43 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#44 {main} +"} +[2022-08-02 18:17:37] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#410
+  #items: array:58 [
+    0 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#414
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#415
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#416
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#417
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#418
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#419
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#420
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#421
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#422
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#423
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#424
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#425
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#426
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#427
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#428
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#429
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#430
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#431
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#432
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#433
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#434
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#435
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#436
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#437
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#438
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#439
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#440
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#441
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#442
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#443
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#289
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:17:55] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#410
+  #items: array:58 [
+    0 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#414
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#415
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#416
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#417
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#418
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#419
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#420
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#421
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#422
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#423
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#424
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#425
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#426
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#427
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#428
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#429
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#430
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#431
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#432
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#433
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#434
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#435
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#436
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#437
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#438
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#439
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#440
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#441
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#442
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#443
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#289
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:18:38] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#410
+  #items: array:58 [
+    0 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#414
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#415
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#416
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#417
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#418
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#419
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#420
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#421
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#422
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#423
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#424
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#425
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#426
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#427
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#428
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#429
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#430
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#431
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#432
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#433
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#434
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#435
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#436
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#437
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#438
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#439
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#440
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#441
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#442
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#443
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#285
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:20:42] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#410
+  #items: array:58 [
+    0 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#414
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#415
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#416
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#417
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#418
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#419
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#420
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#421
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#422
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#423
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#424
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#425
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#426
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#427
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#428
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#429
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#430
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#431
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#432
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#433
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#434
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#435
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#436
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#437
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#438
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#439
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#440
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#441
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#442
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#443
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#285
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:21:04] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#410
+  #items: array:58 [
+    0 => App\\Models\\Currency {#411
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#412
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#413
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#414
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#415
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#416
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#417
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#418
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#419
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#420
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#421
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#422
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#423
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#424
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#425
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#426
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#427
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#428
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#429
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#430
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#431
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#432
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#433
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#434
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#435
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#436
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#437
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#438
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#439
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#440
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#441
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#442
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#443
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#285
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:22:01] local.ERROR: Call to undefined method Illuminate\Database\Query\Builder::getModel() {"exception":"[object] (BadMethodCallException(code: 0): Call to undefined method Illuminate\\Database\\Query\\Builder::getModel() at /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:71) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3538): Illuminate\\Database\\Query\\Builder::throwBadMethodCallException() +#1 /home/calvin/work/2022/08/02/example-app/routes/web.php(28): Illuminate\\Database\\Query\\Builder->__call() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#43 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#44 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#45 {main} +"} +[2022-08-02 18:23:00] local.ERROR: syntax error, unexpected '=' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '=' at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:23:16] local.ERROR: Cannot use [] for reading {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Cannot use [] for reading at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 {main} +"} +[2022-08-02 18:23:25] local.ERROR: Class 'Model' not found {"exception":"[object] (Error(code: 0): Class 'Model' not found at /home/calvin/work/2022/08/02/example-app/routes/web.php:32) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:23:32] local.ERROR: Cannot use object of type stdClass as array {"exception":"[object] (Error(code: 0): Cannot use object of type stdClass as array at /home/calvin/work/2022/08/02/example-app/routes/web.php:32) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:23:49] local.ERROR: syntax error, unexpected ';', expecting ')' {"exception":"[object] (ParseError(code: 0): syntax error, unexpected ';', expecting ')' at /home/calvin/work/2022/08/02/example-app/routes/web.php:32) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:23:56] local.ERROR: Cannot use object of type stdClass as array {"exception":"[object] (Error(code: 0): Cannot use object of type stdClass as array at /home/calvin/work/2022/08/02/example-app/routes/web.php:32) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:24:48] local.ERROR: Call to undefined function collection() {"exception":"[object] (Error(code: 0): Call to undefined function collection() at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:26:21] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:26:29] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:27:04] local.ERROR: syntax error, unexpected '->' (T_OBJECT_OPERATOR) {"exception":"[object] (ParseError(code: 0): syntax error, unexpected '->' (T_OBJECT_OPERATOR) at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(425): Illuminate\\Routing\\RouteFileRegistrar->register() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(382): Illuminate\\Routing\\Router->loadRoutes() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php(163): Illuminate\\Routing\\Router->group() +#3 /home/calvin/work/2022/08/02/example-app/app/Providers/RouteServiceProvider.php(48): Illuminate\\Routing\\RouteRegistrar->group() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Providers\\RouteServiceProvider->App\\Providers\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(120): Illuminate\\Container\\Container->call() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php(45): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->loadRoutes() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider->Illuminate\\Foundation\\Support\\Providers\\{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Util.php(40): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(81): Illuminate\\Container\\Util::unwrapIfClosure() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Container/Container.php(653): Illuminate\\Container\\BoundMethod::call() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php(119): Illuminate\\Container\\Container->call() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(927): Illuminate\\Support\\ServiceProvider->callBootedCallbacks() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(905): Illuminate\\Foundation\\Application->bootProvider() +#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(906): array_walk() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(237): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(153): Illuminate\\Foundation\\Application->bootstrapWith() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(137): Illuminate\\Foundation\\Http\\Kernel->bootstrap() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#26 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#27 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#28 {main} +"} +[2022-08-02 18:27:33] local.ERROR: Cannot use object of type stdClass as array {"exception":"[object] (Error(code: 0): Cannot use object of type stdClass as array at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:27:45] local.ERROR: Cannot use object of type stdClass as array {"exception":"[object] (Error(code: 0): Cannot use object of type stdClass as array at /home/calvin/work/2022/08/02/example-app/routes/web.php:31) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:27:58] local.ERROR: Class 'App\Models\RatesCollection' not found {"exception":"[object] (Error(code: 0): Class 'App\\Models\\RatesCollection' not found at /home/calvin/work/2022/08/02/example-app/app/Models/Rates.php:33) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(362): App\\Models\\Rates->newCollection() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->hydrate() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(625): Illuminate\\Database\\Eloquent\\Model->__call() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(609): Illuminate\\Database\\Eloquent\\Builder->getModels() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php(294): Illuminate\\Database\\Eloquent\\Builder->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(400): Illuminate\\Database\\Eloquent\\Builder->first() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->find() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2132): Illuminate\\Database\\Eloquent\\Model->forwardCallTo() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2144): Illuminate\\Database\\Eloquent\\Model->__call() +#10 /home/calvin/work/2022/08/02/example-app/routes/web.php(31): Illuminate\\Database\\Eloquent\\Model::__callStatic() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:28:10] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#1515
+  #items: array:58 [
+    0 => App\\Models\\Currency {#1514
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#1513
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#1512
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#1511
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#1510
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#1509
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#1508
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#1507
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#1506
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#1505
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#1504
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#1503
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#1502
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#1501
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#1500
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#1499
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#1498
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#1497
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#1496
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#1495
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#1494
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#1493
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#1492
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#1491
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#1490
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#1489
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#1488
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#1487
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#1486
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#1485
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#1484
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#1483
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#1482
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#1481
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#1480
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#1479
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#1478
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#1477
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#1476
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#1475
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#1474
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#1473
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#1472
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#1471
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#1470
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#1469
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#1468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#1467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#1466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#1465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#1464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#1463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#1462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#1461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#1460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#1459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#1458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#1457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#289
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:29:21] local.ERROR: Class 'Collection' not found {"exception":"[object] (Error(code: 0): Class 'Collection' not found at /home/calvin/work/2022/08/02/example-app/routes/web.php:30) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(238): Illuminate\\Routing\\RouteFileRegistrar->{closure}() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Route.php(208): Illuminate\\Routing\\Route->runCallable() +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Route->run() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#5 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#34 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#41 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#42 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#43 {main} +"} +[2022-08-02 18:29:55] local.ERROR: Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#1443
+  #items: array:58 [
+    0 => App\\Models\\Currency {#1444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#1445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#1446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#1447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#1448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#1449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#1450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#1451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#1452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#1453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#1454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#1455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#1456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#1457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#1458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#1459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#1460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#1461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#1462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#1463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#1464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#1465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#1466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#1467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#1468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#1469
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#1470
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#1471
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#1472
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#1473
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#1474
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#1475
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#1476
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#1477
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#1478
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#1479
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#1480
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#1481
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#1482
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#1483
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#1484
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#1485
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#1486
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#1487
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#1488
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#1489
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#1490
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#1491
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#1492
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#1493
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#1494
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#1495
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#1496
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#1497
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#1498
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#1499
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#1500
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#1501
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#289
+  #items: array:57 [
+    0 => {#290
+      +\"id\": \"673\"
+      +\"value\": \"1.0\"
+      +\"currency_id\": \"1\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    1 => {#293
+      +\"id\": \"674\"
+      +\"value\": \"14.001\"
+      +\"currency_id\": \"3\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    2 => {#294
+      +\"id\": \"675\"
+      +\"value\": \"394.214\"
+      +\"currency_id\": \"4\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    3 => {#295
+      +\"id\": \"676\"
+      +\"value\": \"171.45\"
+      +\"currency_id\": \"5\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    4 => {#296
+      +\"id\": \"677\"
+      +\"value\": \"80.362\"
+      +\"currency_id\": \"6\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    5 => {#297
+      +\"id\": \"678\"
+      +\"value\": \"19252.756\"
+      +\"currency_id\": \"7\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    6 => {#298
+      +\"id\": \"679\"
+      +\"value\": \"61802.686\"
+      +\"currency_id\": \"8\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    7 => {#299
+      +\"id\": \"680\"
+      +\"value\": \"198468.17\"
+      +\"currency_id\": \"9\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    8 => {#300
+      +\"id\": \"681\"
+      +\"value\": \"3148.744\"
+      +\"currency_id\": \"10\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    9 => {#301
+      +\"id\": \"682\"
+      +\"value\": \"2884.051\"
+      +\"currency_id\": \"11\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    10 => {#302
+      +\"id\": \"683\"
+      +\"value\": \"2.015\"
+      +\"currency_id\": \"12\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    11 => {#303
+      +\"id\": \"684\"
+      +\"value\": \"23266.63\"
+      +\"currency_id\": \"13\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    12 => {#304
+      +\"id\": \"685\"
+      +\"value\": \"85458.333\"
+      +\"currency_id\": \"14\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    13 => {#305
+      +\"id\": \"687\"
+      +\"value\": \"33563.859\"
+      +\"currency_id\": \"15\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    14 => {#306
+      +\"id\": \"688\"
+      +\"value\": \"2202262.693\"
+      +\"currency_id\": \"16\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    15 => {#307
+      +\"id\": \"689\"
+      +\"value\": \"8772.008\"
+      +\"currency_id\": \"17\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    16 => {#308
+      +\"id\": \"691\"
+      +\"value\": \"122640.735\"
+      +\"currency_id\": \"18\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    17 => {#309
+      +\"id\": \"692\"
+      +\"value\": \"29909.369\"
+      +\"currency_id\": \"19\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    18 => {#310
+      +\"id\": \"693\"
+      +\"value\": \"22258.254\"
+      +\"currency_id\": \"20\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    19 => {#311
+      +\"id\": \"694\"
+      +\"value\": \"21105160.417\"
+      +\"currency_id\": \"21\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    20 => {#312
+      +\"id\": \"695\"
+      +\"value\": \"157112.574\"
+      +\"currency_id\": \"22\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    21 => {#313
+      +\"id\": \"696\"
+      +\"value\": \"563409.504\"
+      +\"currency_id\": \"23\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    22 => {#314
+      +\"id\": \"697\"
+      +\"value\": \"170133.721\"
+      +\"currency_id\": \"24\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    23 => {#315
+      +\"id\": \"698\"
+      +\"value\": \"22856.346\"
+      +\"currency_id\": \"25\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    24 => {#316
+      +\"id\": \"699\"
+      +\"value\": \"19092.922\"
+      +\"currency_id\": \"26\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    25 => {#317
+      +\"id\": \"700\"
+      +\"value\": \"182646.538\"
+      +\"currency_id\": \"27\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    26 => {#318
+      +\"id\": \"701\"
+      +\"value\": \"9100729.094\"
+      +\"currency_id\": \"28\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    27 => {#319
+      +\"id\": \"702\"
+      +\"value\": \"346332707.563\"
+      +\"currency_id\": \"29\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    28 => {#320
+      +\"id\": \"703\"
+      +\"value\": \"78436.58\"
+      +\"currency_id\": \"30\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    29 => {#321
+      +\"id\": \"704\"
+      +\"value\": \"1828650.121\"
+      +\"currency_id\": \"31\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    30 => {#322
+      +\"id\": \"706\"
+      +\"value\": \"30564168.724\"
+      +\"currency_id\": \"32\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    31 => {#323
+      +\"id\": \"707\"
+      +\"value\": \"7132.781\"
+      +\"currency_id\": \"33\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    32 => {#324
+      +\"id\": \"708\"
+      +\"value\": \"8303287.837\"
+      +\"currency_id\": \"34\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    33 => {#325
+      +\"id\": \"709\"
+      +\"value\": \"43045545.518\"
+      +\"currency_id\": \"35\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    34 => {#326
+      +\"id\": \"710\"
+      +\"value\": \"482258.383\"
+      +\"currency_id\": \"36\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    35 => {#327
+      +\"id\": \"711\"
+      +\"value\": \"103629.571\"
+      +\"currency_id\": \"37\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    36 => {#328
+      +\"id\": \"712\"
+      +\"value\": \"9688224.89\"
+      +\"currency_id\": \"38\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    37 => {#329
+      +\"id\": \"713\"
+      +\"value\": \"227152.252\"
+      +\"currency_id\": \"39\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    38 => {#330
+      +\"id\": \"714\"
+      +\"value\": \"37130.657\"
+      +\"currency_id\": \"40\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    39 => {#331
+      +\"id\": \"715\"
+      +\"value\": \"1291914.458\"
+      +\"currency_id\": \"41\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    40 => {#332
+      +\"id\": \"716\"
+      +\"value\": \"5551418.008\"
+      +\"currency_id\": \"42\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    41 => {#333
+      +\"id\": \"717\"
+      +\"value\": \"108040.157\"
+      +\"currency_id\": \"43\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    42 => {#334
+      +\"id\": \"718\"
+      +\"value\": \"1410539.513\"
+      +\"currency_id\": \"44\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    43 => {#335
+      +\"id\": \"719\"
+      +\"value\": \"87411.962\"
+      +\"currency_id\": \"45\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    44 => {#336
+      +\"id\": \"721\"
+      +\"value\": \"32157.74\"
+      +\"currency_id\": \"46\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    45 => {#337
+      +\"id\": \"722\"
+      +\"value\": \"841786.687\"
+      +\"currency_id\": \"47\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    46 => {#338
+      +\"id\": \"723\"
+      +\"value\": \"417522.008\"
+      +\"currency_id\": \"48\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    47 => {#339
+      +\"id\": \"724\"
+      +\"value\": \"696102.657\"
+      +\"currency_id\": \"49\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    48 => {#340
+      +\"id\": \"725\"
+      +\"value\": \"858620.396\"
+      +\"currency_id\": \"50\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    49 => {#341
+      +\"id\": \"726\"
+      +\"value\": \"2329.687\"
+      +\"currency_id\": \"51\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    50 => {#342
+      +\"id\": \"727\"
+      +\"value\": \"543508485.683\"
+      +\"currency_id\": \"52\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    51 => {#343
+      +\"id\": \"728\"
+      +\"value\": \"389248.12\"
+      +\"currency_id\": \"53\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    52 => {#344
+      +\"id\": \"729\"
+      +\"value\": \"17055.58\"
+      +\"currency_id\": \"54\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    53 => {#345
+      +\"id\": \"730\"
+      +\"value\": \"1160.315\"
+      +\"currency_id\": \"55\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    54 => {#346
+      +\"id\": \"731\"
+      +\"value\": \"13.159\"
+      +\"currency_id\": \"56\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    55 => {#347
+      +\"id\": \"732\"
+      +\"value\": \"1000000.0\"
+      +\"currency_id\": \"57\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+    56 => {#348
+      +\"id\": \"733\"
+      +\"value\": \"100000000.0\"
+      +\"currency_id\": \"58\"
+      +\"relative_id\": \"1\"
+      +\"created_at\": \"2022-08-02 18:16:47\"
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$currency (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$currency at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:47) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(47): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} +[2022-08-02 18:32:54] local.ERROR: Use of undefined constant rates - assumed 'rates' (this will throw an Error in a future version of PHP) (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) {"view":{"view":"/home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php","data":{"errors":"
Illuminate\\Support\\ViewErrorBag {#276
+  #bags: []
+}
+
+","currencies":"
Illuminate\\Database\\Eloquent\\Collection {#1443
+  #items: array:58 [
+    0 => App\\Models\\Currency {#1444
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Currency {#1445
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Currency {#1446
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Currency {#1447
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Currency {#1448
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Currency {#1449
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Currency {#1450
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Currency {#1451
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Currency {#1452
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Currency {#1453
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Currency {#1454
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Currency {#1455
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Currency {#1456
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Currency {#1457
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Currency {#1458
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Currency {#1459
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Currency {#1460
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Currency {#1461
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Currency {#1462
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Currency {#1463
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Currency {#1464
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Currency {#1465
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Currency {#1466
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Currency {#1467
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Currency {#1468
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Currency {#1469
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Currency {#1470
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Currency {#1471
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Currency {#1472
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Currency {#1473
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Currency {#1474
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Currency {#1475
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Currency {#1476
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Currency {#1477
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Currency {#1478
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Currency {#1479
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Currency {#1480
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Currency {#1481
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Currency {#1482
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Currency {#1483
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Currency {#1484
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Currency {#1485
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Currency {#1486
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Currency {#1487
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Currency {#1488
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Currency {#1489
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Currency {#1490
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Currency {#1491
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Currency {#1492
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Currency {#1493
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Currency {#1494
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Currency {#1495
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Currency {#1496
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Currency {#1497
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Currency {#1498
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Currency {#1499
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Currency {#1500
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    57 => App\\Models\\Currency {#1501
+      #connection: \"sqlite\"
+      #table: \"currency\"
+      #fillable: array:3 [ …3]
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+","rates":"
Illuminate\\Support\\Collection {#285
+  #items: array:57 [
+    0 => App\\Models\\Rates {#669
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    1 => App\\Models\\Rates {#1029
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    2 => App\\Models\\Rates {#1277
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    3 => App\\Models\\Rates {#1279
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    4 => App\\Models\\Rates {#1281
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    5 => App\\Models\\Rates {#1283
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    6 => App\\Models\\Rates {#1285
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    7 => App\\Models\\Rates {#1287
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    8 => App\\Models\\Rates {#1289
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    9 => App\\Models\\Rates {#1291
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    10 => App\\Models\\Rates {#1293
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    11 => App\\Models\\Rates {#1295
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    12 => App\\Models\\Rates {#1297
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    13 => App\\Models\\Rates {#1299
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    14 => App\\Models\\Rates {#1301
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    15 => App\\Models\\Rates {#1303
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    16 => App\\Models\\Rates {#1305
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    17 => App\\Models\\Rates {#1307
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    18 => App\\Models\\Rates {#1309
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    19 => App\\Models\\Rates {#1311
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    20 => App\\Models\\Rates {#1313
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    21 => App\\Models\\Rates {#1315
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    22 => App\\Models\\Rates {#1317
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    23 => App\\Models\\Rates {#1319
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    24 => App\\Models\\Rates {#1321
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    25 => App\\Models\\Rates {#1323
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    26 => App\\Models\\Rates {#1325
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    27 => App\\Models\\Rates {#1327
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    28 => App\\Models\\Rates {#1329
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    29 => App\\Models\\Rates {#1331
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    30 => App\\Models\\Rates {#1333
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    31 => App\\Models\\Rates {#1335
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    32 => App\\Models\\Rates {#1337
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    33 => App\\Models\\Rates {#1339
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    34 => App\\Models\\Rates {#1341
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    35 => App\\Models\\Rates {#1343
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    36 => App\\Models\\Rates {#1345
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    37 => App\\Models\\Rates {#1347
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    38 => App\\Models\\Rates {#1349
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    39 => App\\Models\\Rates {#1351
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    40 => App\\Models\\Rates {#1353
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    41 => App\\Models\\Rates {#1355
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    42 => App\\Models\\Rates {#1357
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    43 => App\\Models\\Rates {#1359
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    44 => App\\Models\\Rates {#1361
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    45 => App\\Models\\Rates {#1363
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    46 => App\\Models\\Rates {#1365
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    47 => App\\Models\\Rates {#1367
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    48 => App\\Models\\Rates {#1369
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    49 => App\\Models\\Rates {#1371
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    50 => App\\Models\\Rates {#1373
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    51 => App\\Models\\Rates {#1375
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    52 => App\\Models\\Rates {#1377
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    53 => App\\Models\\Rates {#1379
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    54 => App\\Models\\Rates {#1381
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    55 => App\\Models\\Rates {#1383
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+    56 => App\\Models\\Rates {#1385
+      #connection: \"sqlite\"
+      #fillable: array:3 [ …3]
+      #table: \"rates\"
+      #primaryKey: \"id\"
+      #keyType: \"int\"
+      +incrementing: true
+      #with: []
+      #withCount: []
+      +preventsLazyLoading: false
+      #perPage: 15
+      +exists: true
+      +wasRecentlyCreated: false
+      #escapeWhenCastingToString: false
+      #attributes: array:6 [ …6]
+      #original: array:6 [ …6]
+      #changes: []
+      #casts: []
+      #classCastCache: []
+      #attributeCastCache: []
+      #dates: []
+      #dateFormat: null
+      #appends: []
+      #dispatchesEvents: []
+      #observables: []
+      #relations: []
+      #touches: []
+      +timestamps: true
+      #hidden: []
+      #visible: []
+      #guarded: array:1 [ …1]
+    }
+  ]
+  #escapeWhenCastingToString: false
+}
+
+"}},"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Use of undefined constant rates - assumed 'rates' (this will throw an Error in a future version of PHP) (View: /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php) at /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php:35) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php(35): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} + +[previous exception] [object] (ErrorException(code: 0): Use of undefined constant rates - assumed 'rates' (this will throw an Error in a future version of PHP) at /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php:35) +[stacktrace] +#0 /home/calvin/work/2022/08/02/example-app/storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php(35): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError() +#1 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require('/home/calvin/wo...') +#2 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire() +#4 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Illuminate\\View\\Engines\\PhpEngine->evaluatePath() +#5 /home/calvin/work/2022/08/02/example-app/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine->get() +#6 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine->get() +#7 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View->getContents() +#8 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View->renderContents() +#9 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#10 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent() +#11 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(820): Illuminate\\Http\\Response->__construct() +#12 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(789): Illuminate\\Routing\\Router::toResponse() +#13 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(721): Illuminate\\Routing\\Router->prepareResponse() +#14 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}() +#15 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#16 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle() +#17 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#18 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle() +#19 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#20 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle() +#21 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#22 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest() +#23 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle() +#24 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#25 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle() +#26 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#27 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle() +#28 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#29 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(723): Illuminate\\Pipeline\\Pipeline->then() +#30 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(698): Illuminate\\Routing\\Router->runRouteWithinStack() +#31 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRoute() +#32 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Routing/Router.php(651): Illuminate\\Routing\\Router->dispatchToRoute() +#33 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(167): Illuminate\\Routing\\Router->dispatch() +#34 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}() +#35 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#36 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#37 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle() +#38 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#39 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle() +#40 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle() +#41 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#42 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle() +#43 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#44 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle() +#45 /home/calvin/work/2022/08/02/example-app/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#46 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle() +#47 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#48 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies->handle() +#49 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}() +#50 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline->then() +#51 /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter() +#52 /home/calvin/work/2022/08/02/example-app/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel->handle() +#53 /home/calvin/work/2022/08/02/example-app/server.php(21): require_once('/home/calvin/wo...') +#54 {main} +"} -- cgit v1.2.3