aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@fastmailteam.com>2022-08-02 14:36:09 -0400
committerCalvin Morrison <calvin@fastmailteam.com>2022-08-02 14:36:09 -0400
commitf2aff7518be55da0fd250e04a4bfc1bbbd5a3d0a (patch)
tree6d5a54ecaf98175aa9db2ebfbf3182c8f3ddf2b3
parent2466d29fe2319c1057cca7cf1e1977451088276e (diff)
data model, query and storage works, frontend display basic last report
-rw-r--r--app/Console/Commands/updateRates.php79
-rw-r--r--app/Console/Kernel.php1
-rw-r--r--app/Models/Currency.php14
-rw-r--r--app/Models/Rates.php23
-rw-r--r--composer.json2
-rw-r--r--composer.lock2
-rw-r--r--database/migrations/2021_08_02_000000_create_rates_table.php65
-rw-r--r--oldstorage/app/.gitignore (renamed from storage/app/.gitignore)0
-rw-r--r--oldstorage/app/public/.gitignore (renamed from storage/app/public/.gitignore)0
-rw-r--r--oldstorage/framework/.gitignore (renamed from storage/framework/.gitignore)0
-rw-r--r--oldstorage/framework/cache/.gitignore (renamed from storage/framework/cache/.gitignore)0
-rw-r--r--oldstorage/framework/cache/data/.gitignore (renamed from storage/framework/cache/data/.gitignore)0
-rw-r--r--oldstorage/framework/sessions/.gitignore (renamed from storage/framework/sessions/.gitignore)0
-rw-r--r--oldstorage/framework/testing/.gitignore (renamed from storage/framework/testing/.gitignore)0
-rw-r--r--oldstorage/framework/views/.gitignore (renamed from storage/framework/views/.gitignore)0
-rw-r--r--oldstorage/logs/.gitignore (renamed from storage/logs/.gitignore)0
-rw-r--r--public/image/btc.pngbin0 -> 87786 bytes
-rw-r--r--resources/views/welcome.blade.php117
-rw-r--r--routes/web.php20
-rw-r--r--storage/framework/sessions/6CoMioIERqqwWD5v6dgasLLmI9KEQ6H2ObYWqfN91
-rw-r--r--storage/framework/sessions/bD0Om2KDolUqqR3vfJOw0w2Mt0wpPDgfeJVD7Bzy1
-rw-r--r--storage/framework/views/012a1d662de1d6e091232755fc22d6187f7576fe.php65
-rw-r--r--storage/framework/views/95b5e2df885fbdfd1938572f632a4f072bbcedfc.php5
-rw-r--r--storage/framework/views/e3c49cb844acafacc6f9b952b043ee9e8318eb1a.php39
-rw-r--r--storage/logs/laravel.log33193
25 files changed, 33533 insertions, 94 deletions
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 @@
+<?php
+
+namespace App\Console\Commands;
+
+use App\Models\Rates;
+use App\Models\Currency;
+
+use Illuminate\Console\Command;
+use \GuzzleHttp\Client;
+
+class updateRates extends Command
+{
+ /**
+ * The name and signature of the console command.
+ *
+ * @var string
+ */
+ protected $signature = 'rates:update';
+
+ /**
+ * The console command description.
+ *
+ * @var string
+ */
+ protected $description = 'Pull updated rates from our API';
+
+ /**
+ * Create a new command instance.
+ *
+ * @return void
+ */
+ public function __construct()
+ {
+ parent::__construct();
+ }
+
+ /**
+ * Execute the console command.
+ *
+ * @return int
+ */
+ public function handle()
+ {
+ $client = new \GuzzleHttp\Client();
+ $res = $client->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 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class Currency extends Model
+{
+ protected $connection = 'sqlite';
+ protected $table = 'currency';
+ protected $fillable = [
+ 'name', 'unit', 'description'
+];
+};
diff --git a/app/Models/Rates.php b/app/Models/Rates.php
new file mode 100644
index 0000000..5cabf1e
--- /dev/null
+++ b/app/Models/Rates.php
@@ -0,0 +1,23 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class Rates extends Model
+{
+ protected $connection = 'sqlite';
+
+ protected $fillable = [
+ 'currency', 'relative', 'value'
+ ];
+
+ public function currency()
+ {
+ return $this->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 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class CreateRatesTable extends Migration
+{
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::create('currency', function (Blueprint $table) {
+ $table->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/storage/app/.gitignore b/oldstorage/app/.gitignore
index 8f4803c..8f4803c 100644
--- a/storage/app/.gitignore
+++ b/oldstorage/app/.gitignore
diff --git a/storage/app/public/.gitignore b/oldstorage/app/public/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/app/public/.gitignore
+++ b/oldstorage/app/public/.gitignore
diff --git a/storage/framework/.gitignore b/oldstorage/framework/.gitignore
index 05c4471..05c4471 100644
--- a/storage/framework/.gitignore
+++ b/oldstorage/framework/.gitignore
diff --git a/storage/framework/cache/.gitignore b/oldstorage/framework/cache/.gitignore
index 01e4a6c..01e4a6c 100644
--- a/storage/framework/cache/.gitignore
+++ b/oldstorage/framework/cache/.gitignore
diff --git a/storage/framework/cache/data/.gitignore b/oldstorage/framework/cache/data/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/framework/cache/data/.gitignore
+++ b/oldstorage/framework/cache/data/.gitignore
diff --git a/storage/framework/sessions/.gitignore b/oldstorage/framework/sessions/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/framework/sessions/.gitignore
+++ b/oldstorage/framework/sessions/.gitignore
diff --git a/storage/framework/testing/.gitignore b/oldstorage/framework/testing/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/framework/testing/.gitignore
+++ b/oldstorage/framework/testing/.gitignore
diff --git a/storage/framework/views/.gitignore b/oldstorage/framework/views/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/framework/views/.gitignore
+++ b/oldstorage/framework/views/.gitignore
diff --git a/storage/logs/.gitignore b/oldstorage/logs/.gitignore
index d6b7ef3..d6b7ef3 100644
--- a/storage/logs/.gitignore
+++ b/oldstorage/logs/.gitignore
diff --git a/public/image/btc.png b/public/image/btc.png
new file mode 100644
index 0000000..1d14bc6
--- /dev/null
+++ b/public/image/btc.png
Binary files 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 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Laravel</title>
+ <title>Bitcoin Price References</title>
+
+ <!-- external scripts -->
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.bundle.js" charset="utf-8"></script>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
@@ -22,108 +25,40 @@
</head>
<body class="antialiased">
<div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center py-4 sm:pt-0">
- @if (Route::has('login'))
- <div class="hidden fixed top-0 right-0 px-6 py-4 sm:block">
- @auth
- <a href="{{ url('/home') }}" class="text-sm text-gray-700 dark:text-gray-500 underline">Home</a>
- @else
- <a href="{{ route('login') }}" class="text-sm text-gray-700 dark:text-gray-500 underline">Log in</a>
-
- @if (Route::has('register'))
- <a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 dark:text-gray-500 underline">Register</a>
- @endif
- @endauth
- </div>
- @endif
-
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
<div class="flex justify-center pt-8 sm:justify-start sm:pt-0">
- <svg viewBox="0 0 651 192" fill="none" xmlns="http://www.w3.org/2000/svg" class="h-16 w-auto text-gray-700 sm:h-20">
- <g clip-path="url(#clip0)" fill="#EF3B2D">
- <path d="M248.032 44.676h-16.466v100.23h47.394v-14.748h-30.928V44.676zM337.091 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.431 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162-.001 2.863-.479 5.584-1.432 8.161zM463.954 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.432 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162 0 2.863-.479 5.584-1.432 8.161zM650.772 44.676h-15.606v100.23h15.606V44.676zM365.013 144.906h15.607V93.538h26.776V78.182h-42.383v66.724zM542.133 78.182l-19.616 51.096-19.616-51.096h-15.808l25.617 66.724h19.614l25.617-66.724h-15.808zM591.98 76.466c-19.112 0-34.239 15.706-34.239 35.079 0 21.416 14.641 35.079 36.239 35.079 12.088 0 19.806-4.622 29.234-14.688l-10.544-8.158c-.006.008-7.958 10.449-19.832 10.449-13.802 0-19.612-11.127-19.612-16.884h51.777c2.72-22.043-11.772-40.877-33.023-40.877zm-18.713 29.28c.12-1.284 1.917-16.884 18.589-16.884 16.671 0 18.697 15.598 18.813 16.884h-37.402zM184.068 43.892c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002-35.648-20.524a2.971 2.971 0 00-2.964 0l-35.647 20.522-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v38.979l-29.706 17.103V24.493a3 3 0 00-.103-.776c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002L40.098 1.396a2.971 2.971 0 00-2.964 0L1.487 21.919l-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v122.09c0 1.063.568 2.044 1.489 2.575l71.293 41.045c.156.089.324.143.49.202.078.028.15.074.23.095a2.98 2.98 0 001.524 0c.069-.018.132-.059.2-.083.176-.061.354-.119.519-.214l71.293-41.045a2.971 2.971 0 001.489-2.575v-38.979l34.158-19.666a2.971 2.971 0 001.489-2.575V44.666a3.075 3.075 0 00-.106-.774zM74.255 143.167l-29.648-16.779 31.136-17.926.001-.001 34.164-19.669 29.674 17.084-21.772 12.428-43.555 24.863zm68.329-76.259v33.841l-12.475-7.182-17.231-9.92V49.806l12.475 7.182 17.231 9.92zm2.97-39.335l29.693 17.095-29.693 17.095-29.693-17.095 29.693-17.095zM54.06 114.089l-12.475 7.182V46.733l17.231-9.92 12.475-7.182v74.537l-17.231 9.921zM38.614 7.398l29.693 17.095-29.693 17.095L8.921 24.493 38.614 7.398zM5.938 29.632l12.475 7.182 17.231 9.92v79.676l.001.005-.001.006c0 .114.032.221.045.333.017.146.021.294.059.434l.002.007c.032.117.094.222.14.334.051.124.088.255.156.371a.036.036 0 00.004.009c.061.105.149.191.222.288.081.105.149.22.244.314l.008.01c.084.083.19.142.284.215.106.083.202.178.32.247l.013.005.011.008 34.139 19.321v34.175L5.939 144.867V29.632h-.001zm136.646 115.235l-65.352 37.625V148.31l48.399-27.628 16.953-9.677v33.862zm35.646-61.22l-29.706 17.102V66.908l17.231-9.92 12.475-7.182v33.841z"/>
- </g>
- </svg>
+ <img src="{{URL::asset('/image/btc.png')}}" alt="Bitcoin Price Reference" height="100" width="100">
</div>
<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="p-6">
- <div class="flex items-center">
- <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path></svg>
- <div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laravel.com/docs" class="underline text-gray-900 dark:text-white">Documentation</a></div>
- </div>
-
- <div class="ml-12">
+ <div class="ml-2">
<div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
- 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}}<br>
+ Current price reference:
</div>
- </div>
- </div>
-
- <div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l">
- <div class="flex items-center">
- <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"></path><path d="M15 13a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
- <div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laracasts.com" class="underline text-gray-900 dark:text-white">Laracasts</a></div>
- </div>
- <div class="ml-12">
- <div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
- 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.
- </div>
+ <table class="text-gray-600 dark:text-gray-400 table">
+ <thead>
+ <th>Name</th>
+ <th>Unit</th>
+ <th>Description</th>
+ <th>Last Rate (to BTC)</th>
+ </thead>
+ <tbody>
+ @foreach ($rates as $rate)
+ <tr>
+ <td>{{$rate->currency->name}}</td>
+ <td>{{$rate->currency->unit}}</td>
+ <td>{{$rate->currency->description}}</td>
+ <td>{{$rate->value}}</td>
+ </tr>
+ @endforeach
+ </tbody>
+ </table>
</div>
</div>
-
- <div class="p-6 border-t border-gray-200 dark:border-gray-700">
- <div class="flex items-center">
- <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"></path></svg>
- <div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laravel-news.com/" class="underline text-gray-900 dark:text-white">Laravel News</a></div>
- </div>
-
- <div class="ml-12">
- <div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
- 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.
- </div>
- </div>
- </div>
-
- <div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-l">
- <div class="flex items-center">
- <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
- <div class="ml-4 text-lg leading-7 font-semibold text-gray-900 dark:text-white">Vibrant Ecosystem</div>
- </div>
-
- <div class="ml-12">
- <div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
- Laravel's robust library of first-party tools and libraries, such as <a href="https://forge.laravel.com" class="underline">Forge</a>, <a href="https://vapor.laravel.com" class="underline">Vapor</a>, <a href="https://nova.laravel.com" class="underline">Nova</a>, and <a href="https://envoyer.io" class="underline">Envoyer</a> help you take your projects to the next level. Pair them with powerful open source libraries like <a href="https://laravel.com/docs/billing" class="underline">Cashier</a>, <a href="https://laravel.com/docs/dusk" class="underline">Dusk</a>, <a href="https://laravel.com/docs/broadcasting" class="underline">Echo</a>, <a href="https://laravel.com/docs/horizon" class="underline">Horizon</a>, <a href="https://laravel.com/docs/sanctum" class="underline">Sanctum</a>, <a href="https://laravel.com/docs/telescope" class="underline">Telescope</a>, and more.
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <div class="flex justify-center mt-4 sm:items-center sm:justify-between">
- <div class="text-center text-sm text-gray-500 sm:text-left">
- <div class="flex items-center">
- <svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor" class="-mt-px w-5 h-5 text-gray-400">
- <path d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"></path>
- </svg>
-
- <a href="https://laravel.bigcartel.com" class="ml-1 underline">
- Shop
- </a>
-
- <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="ml-4 -mt-px w-5 h-5 text-gray-400">
- <path d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"></path>
- </svg>
-
- <a href="https://github.com/sponsors/taylorotwell" class="ml-1 underline">
- Sponsor
- </a>
- </div>
- </div>
-
- <div class="ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0">
- Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
</div>
</div>
</div>
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 @@
<?php
use Illuminate\Support\Facades\Route;
+use Illuminate\Support\Collection;
+use App\Models\Currency;
+use App\Models\Rates;
/*
|--------------------------------------------------------------------------
@@ -14,5 +17,20 @@ use Illuminate\Support\Facades\Route;
*/
Route::get('/', function () {
- return view('welcome');
+
+ /*
+ select value, currency_id, relative_id, MAX(updated_at)
+ from rates
+ group by (currency_id);
+ */
+ $ratesRaw = DB::table('rates')
+ ->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/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/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 @@
+<!DOCTYPE html>
+<html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>Bitcoin Price References</title>
+
+ <!-- Fonts -->
+ <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
+
+ <!-- Styles -->
+ <style>
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}a{background-color:transparent}[hidden]{display:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #e2e8f0}a{color:inherit;text-decoration:inherit}svg,video{display:block;vertical-align:middle}video{max-width:100%;height:auto}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}.border-gray-200{--border-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--border-opacity))}.border-t{border-top-width:1px}.flex{display:flex}.grid{display:grid}.hidden{display:none}.items-center{align-items:center}.justify-center{justify-content:center}.font-semibold{font-weight:600}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.leading-7{line-height:1.75rem}.mx-auto{margin-left:auto;margin-right:auto}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.max-w-6xl{max-width:72rem}.min-h-screen{min-height:100vh}.overflow-hidden{overflow:hidden}.p-6{padding:1.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.pt-8{padding-top:2rem}.fixed{position:fixed}.relative{position:relative}.top-0{top:0}.right-0{right:0}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.text-center{text-align:center}.text-gray-200{--text-opacity:1;color:#edf2f7;color:rgba(237,242,247,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity))}.underline{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}@media (min-width:640px){.sm\:rounded-lg{border-radius:.5rem}.sm\:block{display:block}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-between{justify-content:space-between}.sm\:h-20{height:5rem}.sm\:ml-0{margin-left:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}}@media (min-width:768px){.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (prefers-color-scheme:dark){.dark\:bg-gray-800{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}.dark\:bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}.dark\:border-gray-700{--border-opacity:1;border-color:#4a5568;border-color:rgba(74,85,104,var(--border-opacity))}.dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.dark\:text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.dark\:text-gray-500{--tw-text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--tw-text-opacity))}}
+ </style>
+
+ <style>
+ body {
+ font-family: 'Nunito', sans-serif;
+ }
+ </style>
+ </head>
+ <body class="antialiased">
+ <div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center py-4 sm:pt-0">
+ <div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
+ <div class="flex justify-center pt-8 sm:justify-start sm:pt-0">
+ <img src="<?php echo e(URL::asset('/image/btc.png')); ?>" alt="Bitcoin Price Reference" height="100" width="100">
+ </div>
+
+ <div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
+ <div class="grid grid-cols-1 md:grid-cols-2">
+ <div class="p-6">
+ <div class="ml-2">
+ <div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
+ Last Update: <?php echo e($rates[0]->updated_at); ?><br>
+ Current price reference:
+ </div>
+
+ <table class="text-gray-600 dark:text-gray-400 table">
+ <thead>
+ <th>Name</th>
+ <th>Unit</th>
+ <th>Description</th>
+ <th>Last Rate (to BTC)</th>
+ </thead>
+ <tbody>
+ <?php $__currentLoopData = $rates; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $rate): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
+ <tr>
+ <td><?php echo e($rate->currency->name); ?></td>
+ <td><?php echo e($rate->currency->unit); ?></td>
+ <td><?php echo e($rate->currency->description); ?></td>
+ <td><?php echo e($rate->value); ?></td>
+ </tr>
+ <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
+ </tbody>
+ </table>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
+<?php /**PATH /home/calvin/work/2022/08/02/example-app/resources/views/welcome.blade.php ENDPATH**/ ?> \ 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 @@
+<?php $__env->startSection('title', __('Not Found')); ?>
+<?php $__env->startSection('code', '404'); ?>
+<?php $__env->startSection('message', __('Not Found')); ?>
+
+<?php echo $__env->make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/404.blade.php ENDPATH**/ ?> \ 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 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title><?php echo $__env->yieldContent('title'); ?></title>
+
+ <!-- Fonts -->
+ <link rel="preconnect" href="https://fonts.gstatic.com">
+ <link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
+
+ <style>
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}a{background-color:transparent}code{font-family:monospace,monospace;font-size:1em}[hidden]{display:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #e2e8f0}a{color:inherit;text-decoration:inherit}code{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}svg,video{display:block;vertical-align:middle}video{max-width:100%;height:auto}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}.border-gray-200{--border-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#cbd5e0;border-color:rgba(203,213,224,var(--border-opacity))}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.flex{display:flex}.grid{display:grid}.hidden{display:none}.items-center{align-items:center}.justify-center{justify-content:center}.font-semibold{font-weight:600}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.leading-7{line-height:1.75rem}.mx-auto{margin-left:auto;margin-right:auto}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.max-w-xl{max-width:36rem}.max-w-6xl{max-width:72rem}.min-h-screen{min-height:100vh}.overflow-hidden{overflow:hidden}.p-6{padding:1.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.pt-8{padding-top:2rem}.fixed{position:fixed}.relative{position:relative}.top-0{top:0}.right-0{right:0}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.text-center{text-align:center}.text-gray-200{--text-opacity:1;color:#edf2f7;color:rgba(237,242,247,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity))}.uppercase{text-transform:uppercase}.underline{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-wider{letter-spacing:.05em}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@-webkit-keyframes ping{0%{transform:scale(1);opacity:1}75%,to{transform:scale(2);opacity:0}}@keyframes ping{0%{transform:scale(1);opacity:1}75%,to{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@media (min-width:640px){.sm\:rounded-lg{border-radius:.5rem}.sm\:block{display:block}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-between{justify-content:space-between}.sm\:h-20{height:5rem}.sm\:ml-0{margin-left:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}}@media (min-width:768px){.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (prefers-color-scheme:dark){.dark\:bg-gray-800{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}.dark\:bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}.dark\:border-gray-700{--border-opacity:1;border-color:#4a5568;border-color:rgba(74,85,104,var(--border-opacity))}.dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.dark\:text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}}
+ </style>
+
+ <style>
+ body {
+ font-family: 'Nunito', sans-serif;
+ }
+ </style>
+ </head>
+ <body class="antialiased">
+ <div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0">
+ <div class="max-w-xl mx-auto sm:px-6 lg:px-8">
+ <div class="flex items-center pt-8 sm:justify-start sm:pt-0">
+ <div class="px-4 text-lg text-gray-500 border-r border-gray-400 tracking-wider">
+ <?php echo $__env->yieldContent('code'); ?>
+ </div>
+
+ <div class="ml-4 text-lg text-gray-500 uppercase tracking-wider">
+ <?php echo $__env->yieldContent('message'); ?>
+ </div>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
+<?php /**PATH /home/calvin/work/2022/08/02/example-app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/minimal.blade.php ENDPATH**/ ?> \ No newline at end of file
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":"<pre class=sf-dump id=sf-dump-479764156 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-479764156\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1226241142 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#295</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1226241142\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1062059522 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#611</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#971</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1062059522\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1425857423 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1425857423\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1357316424 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#295</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1357316424\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-855672364 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#611</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#971</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-855672364\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-965326096 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-965326096\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1501941027 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#295</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1501941027\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1575768594 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#611</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#971</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1575768594\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1492407801 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1492407801\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-2087728228 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#355</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#356</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#357</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#358</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#359</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#360</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#361</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#362</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#363</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#364</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#365</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#366</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#367</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#368</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#369</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#370</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#371</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#372</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#373</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#374</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#375</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#376</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#377</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#378</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#379</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#380</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#381</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#382</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#383</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#384</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#385</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#386</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#387</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#388</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#389</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#390</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#391</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#392</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#393</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#394</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#395</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#396</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#397</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#398</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#399</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#400</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#401</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#402</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#403</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#404</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#405</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#406</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#407</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#408</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#409</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#410</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-2087728228\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1828972663 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#288</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#291</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">&quot;value, currency_id, relative_id, max(created_at)&quot;</span>\": \"<span class=sf-dump-str title=\"48 characters\">value, currency_id, relative_id, max(created_at)</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#292</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">&quot;value, currency_id, relative_id, max(created_at)&quot;</span>\": \"<span class=sf-dump-str title=\"48 characters\">value, currency_id, relative_id, max(created_at)</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1828972663\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1744815085 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1744815085\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-787301059 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#355</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#356</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#357</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#358</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#359</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#360</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#361</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#362</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#363</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#364</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#365</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#366</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#367</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#368</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#369</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#370</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#371</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#372</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#373</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#374</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#375</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#376</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#377</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#378</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#379</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#380</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#381</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#382</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#383</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#384</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#385</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#386</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#387</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#388</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#389</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#390</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#391</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#392</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#393</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#394</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#395</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#396</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#397</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#398</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#399</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#400</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#401</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#402</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#403</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#404</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#405</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#406</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#407</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#408</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#409</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#410</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-787301059\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-378150008 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#288</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#291</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">&quot;value, currency_id, relative_id, max(created_at)&quot;</span>\": \"<span class=sf-dump-str title=\"48 characters\">value, currency_id, relative_id, max(created_at)</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#292</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">&quot;value, currency_id, relative_id, max(created_at)&quot;</span>\": \"<span class=sf-dump-str title=\"48 characters\">value, currency_id, relative_id, max(created_at)</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-378150008\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-189915238 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-189915238\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1501547187 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#355</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#356</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#357</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#358</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#359</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#360</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#361</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#362</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#363</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#364</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#365</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#366</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#367</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#368</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#369</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#370</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#371</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#372</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#373</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#374</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#375</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#376</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#377</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#378</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#379</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#380</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#381</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#382</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#383</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#384</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#385</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#386</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#387</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#388</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#389</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#390</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#391</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#392</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#393</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#394</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#395</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#396</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#397</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#398</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#399</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#400</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#401</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#402</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#403</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#404</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#405</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#406</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#407</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#408</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#409</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#410</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1501547187\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-2027906266 data-indent-pad=\" \"><span class=sf-dump-const>null</span>
+</pre><script>Sfdump(\"sf-dump-2027906266\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1141273629 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1141273629\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-446606641 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#410</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#414</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#415</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#416</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#417</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#418</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#419</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#420</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#421</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#422</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#423</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#424</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#425</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#426</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#427</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#428</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#429</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#430</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#431</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#432</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#433</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#434</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#435</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#436</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#437</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#438</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#439</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#440</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#441</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#442</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#443</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-446606641\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1688423715 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#289</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1688423715\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1019004603 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1019004603\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-376395664 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#410</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#414</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#415</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#416</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#417</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#418</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#419</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#420</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#421</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#422</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#423</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#424</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#425</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#426</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#427</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#428</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#429</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#430</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#431</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#432</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#433</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#434</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#435</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#436</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#437</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#438</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#439</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#440</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#441</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#442</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#443</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-376395664\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-882876035 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#289</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-882876035\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1220301241 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1220301241\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1471783504 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#410</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#414</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#415</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#416</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#417</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#418</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#419</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#420</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#421</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#422</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#423</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#424</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#425</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#426</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#427</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#428</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#429</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#430</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#431</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#432</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#433</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#434</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#435</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#436</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#437</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#438</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#439</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#440</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#441</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#442</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#443</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1471783504\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-480729066 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#285</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-480729066\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-780974753 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-780974753\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-120459247 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#410</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#414</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#415</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#416</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#417</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#418</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#419</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#420</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#421</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#422</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#423</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#424</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#425</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#426</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#427</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#428</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#429</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#430</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#431</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#432</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#433</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#434</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#435</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#436</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#437</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#438</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#439</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#440</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#441</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#442</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#443</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-120459247\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-229220407 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#285</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-229220407\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1418373224 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1418373224\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1312149527 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#410</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#411</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#412</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#413</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#414</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#415</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#416</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#417</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#418</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#419</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#420</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#421</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#422</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#423</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#424</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#425</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#426</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#427</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#428</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#429</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#430</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#431</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#432</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#433</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#434</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#435</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#436</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#437</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#438</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#439</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#440</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#441</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#442</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#443</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1312149527\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1287236840 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#285</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1287236840\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-622134031 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-622134031\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-1936610614 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#1515</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1514</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1513</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1512</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1511</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1510</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1509</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1508</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1507</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1506</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1505</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1504</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1503</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1502</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1501</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1500</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1499</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1498</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1497</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1494</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1493</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1492</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1491</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1490</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1489</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1488</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1487</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1485</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1484</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1483</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1482</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1481</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1480</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1479</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1478</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1477</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1476</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1475</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1474</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1473</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1472</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1471</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1470</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1936610614\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-999527850 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#289</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-999527850\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-12927941 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-12927941\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-118891153 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#1443</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1470</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1471</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1472</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1473</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1474</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1475</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1476</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1477</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1478</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1479</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1480</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1481</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1482</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1483</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1484</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1485</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1487</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1488</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1489</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1490</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1491</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1492</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1493</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1494</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1497</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1498</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1499</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1500</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1501</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-118891153\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-831676626 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#289</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#290</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">673</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"3 characters\">1.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#293</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">674</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">14.001</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>3</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#294</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">675</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"7 characters\">394.214</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>4</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>3</span> => {<a class=sf-dump-ref>#295</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">676</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">171.45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>5</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>4</span> => {<a class=sf-dump-ref>#296</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">677</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">80.362</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>6</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>5</span> => {<a class=sf-dump-ref>#297</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">678</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19252.756</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>7</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>6</span> => {<a class=sf-dump-ref>#298</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">679</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">61802.686</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>8</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>7</span> => {<a class=sf-dump-ref>#299</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">680</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">198468.17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str>9</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>8</span> => {<a class=sf-dump-ref>#300</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">681</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">3148.744</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">10</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>9</span> => {<a class=sf-dump-ref>#301</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">682</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2884.051</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">11</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>10</span> => {<a class=sf-dump-ref>#302</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"5 characters\">2.015</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>11</span> => {<a class=sf-dump-ref>#303</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">684</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">23266.63</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">13</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>12</span> => {<a class=sf-dump-ref>#304</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">685</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">85458.333</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">14</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>13</span> => {<a class=sf-dump-ref>#305</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">33563.859</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">15</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>14</span> => {<a class=sf-dump-ref>#306</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">688</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">2202262.693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">16</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>15</span> => {<a class=sf-dump-ref>#307</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">689</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">8772.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">17</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>16</span> => {<a class=sf-dump-ref>#308</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">691</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">122640.735</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">18</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>17</span> => {<a class=sf-dump-ref>#309</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">692</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">29909.369</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">19</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>18</span> => {<a class=sf-dump-ref>#310</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">693</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22258.254</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">20</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>19</span> => {<a class=sf-dump-ref>#311</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">694</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">21105160.417</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">21</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>20</span> => {<a class=sf-dump-ref>#312</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">695</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">157112.574</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">22</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>21</span> => {<a class=sf-dump-ref>#313</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">696</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">563409.504</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">23</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>22</span> => {<a class=sf-dump-ref>#314</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">697</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">170133.721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">24</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>23</span> => {<a class=sf-dump-ref>#315</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">698</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">22856.346</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">25</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>24</span> => {<a class=sf-dump-ref>#316</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">699</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">19092.922</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">26</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>25</span> => {<a class=sf-dump-ref>#317</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">700</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">182646.538</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">27</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>26</span> => {<a class=sf-dump-ref>#318</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">701</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">9100729.094</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">28</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>27</span> => {<a class=sf-dump-ref>#319</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">702</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">346332707.563</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">29</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>28</span> => {<a class=sf-dump-ref>#320</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">703</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">78436.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">30</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>29</span> => {<a class=sf-dump-ref>#321</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">704</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1828650.121</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">31</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>30</span> => {<a class=sf-dump-ref>#322</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">706</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">30564168.724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">32</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>31</span> => {<a class=sf-dump-ref>#323</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">707</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">7132.781</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">33</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>32</span> => {<a class=sf-dump-ref>#324</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">708</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">8303287.837</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">34</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>33</span> => {<a class=sf-dump-ref>#325</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">709</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"12 characters\">43045545.518</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">35</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>34</span> => {<a class=sf-dump-ref>#326</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">710</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">482258.383</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">36</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>35</span> => {<a class=sf-dump-ref>#327</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">711</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">103629.571</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">37</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>36</span> => {<a class=sf-dump-ref>#328</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">712</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">9688224.89</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">38</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>37</span> => {<a class=sf-dump-ref>#329</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">713</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">227152.252</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">39</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>38</span> => {<a class=sf-dump-ref>#330</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">714</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">37130.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">40</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>39</span> => {<a class=sf-dump-ref>#331</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">715</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1291914.458</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">41</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>40</span> => {<a class=sf-dump-ref>#332</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">716</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">5551418.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">42</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>41</span> => {<a class=sf-dump-ref>#333</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">717</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">108040.157</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">43</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>42</span> => {<a class=sf-dump-ref>#334</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">718</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">1410539.513</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">44</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>43</span> => {<a class=sf-dump-ref>#335</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">719</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">87411.962</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">45</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>44</span> => {<a class=sf-dump-ref>#336</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">721</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">32157.74</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">46</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>45</span> => {<a class=sf-dump-ref>#337</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">722</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">841786.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">47</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>46</span> => {<a class=sf-dump-ref>#338</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">723</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">417522.008</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">48</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>47</span> => {<a class=sf-dump-ref>#339</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">724</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">696102.657</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">49</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>48</span> => {<a class=sf-dump-ref>#340</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">725</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"10 characters\">858620.396</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">50</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>49</span> => {<a class=sf-dump-ref>#341</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">726</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">2329.687</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">51</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>50</span> => {<a class=sf-dump-ref>#342</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">727</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"13 characters\">543508485.683</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">52</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>51</span> => {<a class=sf-dump-ref>#343</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">728</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">389248.12</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">53</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>52</span> => {<a class=sf-dump-ref>#344</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">729</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">17055.58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">54</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>53</span> => {<a class=sf-dump-ref>#345</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">730</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"8 characters\">1160.315</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">55</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>54</span> => {<a class=sf-dump-ref>#346</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">731</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"6 characters\">13.159</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">56</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>55</span> => {<a class=sf-dump-ref>#347</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">732</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"9 characters\">1000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">57</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ <span class=sf-dump-index>56</span> => {<a class=sf-dump-ref>#348</a><samp data-depth=3 class=sf-dump-compact>
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">id</span>\": \"<span class=sf-dump-str title=\"3 characters\">733</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">value</span>\": \"<span class=sf-dump-str title=\"11 characters\">100000000.0</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">currency_id</span>\": \"<span class=sf-dump-str title=\"2 characters\">58</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">relative_id</span>\": \"<span class=sf-dump-str>1</span>\"
+ +\"<span class=sf-dump-public title=\"Runtime added dynamic property\">created_at</span>\": \"<span class=sf-dump-str title=\"19 characters\">2022-08-02 18:16:47</span>\"
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-831676626\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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":"<pre class=sf-dump id=sf-dump-1329530449 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#276</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">bags</span>: []
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1329530449\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","currencies":"<pre class=sf-dump id=sf-dump-590264834 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Database\\Eloquent\\Collection</span> {<a class=sf-dump-ref>#1443</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:58</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1444</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1445</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1446</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1447</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1448</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1449</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1450</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1451</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1452</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1453</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1455</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1456</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1458</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1459</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1460</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1461</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1462</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1463</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1464</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1465</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1466</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1467</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1468</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1470</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1471</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1472</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1473</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1474</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1475</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1476</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1477</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1478</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1479</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1480</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1481</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1482</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1483</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1484</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1485</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1487</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1488</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1489</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1490</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1491</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1492</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1493</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1494</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1497</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1498</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1499</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1500</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>57</span> => <span class=sf-dump-note title=\"App\\Models\\Currency
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Currency</span> {<a class=sf-dump-ref>#1501</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"8 characters\">currency</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-590264834\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+","rates":"<pre class=sf-dump id=sf-dump-1840306669 data-indent-pad=\" \"><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#285</a><samp data-depth=1 class=sf-dump-expanded>
+ #<span class=sf-dump-protected title=\"Protected property\">items</span>: <span class=sf-dump-note>array:57</span> [<samp data-depth=2 class=sf-dump-compact>
+ <span class=sf-dump-index>0</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#669</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>1</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1029</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>2</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1277</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>3</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1279</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>4</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1281</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>5</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1283</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>6</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1285</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>7</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1287</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>8</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1289</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>9</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1291</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>10</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1293</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>11</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1295</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>12</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1297</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>13</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1299</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>14</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1301</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>15</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1303</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>16</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1305</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>17</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1307</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>18</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1309</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>19</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1311</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>20</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1313</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>21</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1315</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>22</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1317</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>23</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1319</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>24</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1321</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>25</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1323</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>26</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1325</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>27</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1327</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>28</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1329</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>29</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1331</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>30</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1333</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>31</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1335</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>32</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1337</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>33</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1339</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>34</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1341</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>35</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1343</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>36</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1345</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>37</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1347</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>38</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1349</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>39</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1351</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>40</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1353</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>41</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1355</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>42</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1357</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>43</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1359</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>44</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1361</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>45</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>46</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1365</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>47</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1367</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>48</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1369</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>49</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1371</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>50</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1373</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>51</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1375</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>52</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1377</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>53</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1379</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>54</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1381</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>55</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1383</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ <span class=sf-dump-index>56</span> => <span class=sf-dump-note title=\"App\\Models\\Rates
+\"><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">App\\Models</span><span class=\"sf-dump-ellipsis sf-dump-ellipsis-note\">\\</span>Rates</span> {<a class=sf-dump-ref>#1385</a><samp data-depth=3 class=sf-dump-compact>
+ #<span class=sf-dump-protected title=\"Protected property\">connection</span>: \"<span class=sf-dump-str title=\"6 characters\">sqlite</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">fillable</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
+ #<span class=sf-dump-protected title=\"Protected property\">table</span>: \"<span class=sf-dump-str title=\"5 characters\">rates</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">primaryKey</span>: \"<span class=sf-dump-str title=\"2 characters\">id</span>\"
+ #<span class=sf-dump-protected title=\"Protected property\">keyType</span>: \"<span class=sf-dump-str title=\"3 characters\">int</span>\"
+ +<span class=sf-dump-public title=\"Public property\">incrementing</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">with</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">withCount</span>: []
+ +<span class=sf-dump-public title=\"Public property\">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">perPage</span>: <span class=sf-dump-num>15</span>
+ +<span class=sf-dump-public title=\"Public property\">exists</span>: <span class=sf-dump-const>true</span>
+ +<span class=sf-dump-public title=\"Public property\">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+ #<span class=sf-dump-protected title=\"Protected property\">attributes</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">original</span>: <span class=sf-dump-note>array:6</span> [ &#8230;6]
+ #<span class=sf-dump-protected title=\"Protected property\">changes</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">casts</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">classCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">attributeCastCache</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dates</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dateFormat</span>: <span class=sf-dump-const>null</span>
+ #<span class=sf-dump-protected title=\"Protected property\">appends</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">dispatchesEvents</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">observables</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">relations</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">touches</span>: []
+ +<span class=sf-dump-public title=\"Public property\">timestamps</span>: <span class=sf-dump-const>true</span>
+ #<span class=sf-dump-protected title=\"Protected property\">hidden</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">visible</span>: []
+ #<span class=sf-dump-protected title=\"Protected property\">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
+ </samp>}
+ </samp>]
+ #<span class=sf-dump-protected title=\"Protected property\">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
+</samp>}
+</pre><script>Sfdump(\"sf-dump-1840306669\", {\"maxDepth\":3,\"maxStringLength\":160})</script>
+"}},"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}
+"}